From fef5bfe57be738043b7d5503e7ab526b9cb9304f Mon Sep 17 00:00:00 2001 From: kevaundray Date: Fri, 3 Nov 2023 11:02:26 +0000 Subject: [PATCH] chore: remove extra println --- .../src/crates/rollup-lib/src/merkle_tree.nr | 1 - 1 file changed, 1 deletion(-) diff --git a/yarn-project/noir-protocol-circuits/src/crates/rollup-lib/src/merkle_tree.nr b/yarn-project/noir-protocol-circuits/src/crates/rollup-lib/src/merkle_tree.nr index 5a3e14f8e7f..de6baf155b5 100644 --- a/yarn-project/noir-protocol-circuits/src/crates/rollup-lib/src/merkle_tree.nr +++ b/yarn-project/noir-protocol-circuits/src/crates/rollup-lib/src/merkle_tree.nr @@ -13,7 +13,6 @@ impl MerkleTree { // hash base layer for i in 0..half_size { - dep::std::println(i); nodes[i] = dep::std::hash::pedersen_hash([leaves[2*i], leaves[2*i+1]]); }