Skip to content

Commit df6d865

Browse files
Merge pull request #59 from mavotronik/rewrite
Delete unnecessary comments
2 parents 39b4fc0 + 982b6ed commit df6d865

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

src/merkletree.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl MerkleTree {
4646
}
4747

4848
for left_index in (1..nodes_total - 1).step_by(2).rev() {
49-
//let mut hasher = Sha256::new();
49+
5050
let mut to_hash = [0u8; 32];
5151
unsafe {
5252
for (index, (left, right)) in array_representation
@@ -57,8 +57,7 @@ impl MerkleTree {
5757
{
5858
*to_hash.get_unchecked_mut(index) = *left & *right;
5959
}
60-
//hasher.reset();
61-
60+
6261
let hash = Sha256::digest(to_hash);
6362

6463
*(array_representation.get_unchecked_mut((left_index - 1) / 2)) =
@@ -96,7 +95,7 @@ impl MerkleTree {
9695
let lsb_set = index & 1;
9796
let lsb_not_set = lsb_set ^ 1;
9897

99-
// let mut sibling_index = index;
98+
10099

101100
index += lsb_set;
102101
index -= lsb_not_set;
@@ -152,13 +151,7 @@ impl MerkleTree {
152151
unsafe { self.array_representation.get_unchecked(0) }
153152
}
154153

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+
162155
}
163156

164157
#[cfg(test)]

0 commit comments

Comments
 (0)