diff --git a/nssa/src/merkle_tree/mod.rs b/nssa/src/merkle_tree/mod.rs index a27501c..ebc13e0 100644 --- a/nssa/src/merkle_tree/mod.rs +++ b/nssa/src/merkle_tree/mod.rs @@ -57,7 +57,7 @@ impl MerkleTree { } pub fn with_capacity(capacity: usize) -> Self { - //adjust capacity to ensure power of two + // Adjust capacity to ensure power of two let capacity = capacity.next_power_of_two(); let total_depth = capacity.trailing_zeros() as usize;