File tree 1 file changed +4
-11
lines changed
1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ impl MerkleTree {
46
46
}
47
47
48
48
for left_index in ( 1 ..nodes_total - 1 ) . step_by ( 2 ) . rev ( ) {
49
- //let mut hasher = Sha256::new();
49
+
50
50
let mut to_hash = [ 0u8 ; 32 ] ;
51
51
unsafe {
52
52
for ( index, ( left, right) ) in array_representation
@@ -57,8 +57,7 @@ impl MerkleTree {
57
57
{
58
58
* to_hash. get_unchecked_mut ( index) = * left & * right;
59
59
}
60
- //hasher.reset();
61
-
60
+
62
61
let hash = Sha256 :: digest ( to_hash) ;
63
62
64
63
* ( array_representation. get_unchecked_mut ( ( left_index - 1 ) / 2 ) ) =
@@ -96,7 +95,7 @@ impl MerkleTree {
96
95
let lsb_set = index & 1 ;
97
96
let lsb_not_set = lsb_set ^ 1 ;
98
97
99
- // let mut sibling_index = index;
98
+
100
99
101
100
index += lsb_set;
102
101
index -= lsb_not_set;
@@ -152,13 +151,7 @@ impl MerkleTree {
152
151
unsafe { self . array_representation . get_unchecked ( 0 ) }
153
152
}
154
153
155
- // pub fn new() -> MerkleTree {
156
- // todo!()
157
- // }
158
-
159
- // pub fn add_objects(&mut self, input: &Vec<[u8; 32]>) -> bool {
160
- // todo!()
161
- // }
154
+
162
155
}
163
156
164
157
#[ cfg( test) ]
You can’t perform that action at this time.
0 commit comments