Skip to content

Commit

Permalink
removed print
Browse files Browse the repository at this point in the history
  • Loading branch information
ewoolsey committed Mar 12, 2024
1 parent 1a0568a commit bf7b2c2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lazy_merkle_tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,6 @@ impl<H: Hasher> Clone for DenseTree<H> {

impl<H: Hasher> DenseTree<H> {
fn new_with_values(values: &[H::Hash], empty_value: &H::Hash, depth: usize) -> Self {
println!("depth: {depth}");
let leaf_count = 1 << depth;
let storage_size = 1 << (depth + 1);
let mut storage = Vec::with_capacity(storage_size);
Expand Down

0 comments on commit bf7b2c2

Please sign in to comment.