Skip to content

Commit

Permalink
Remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
xqft committed Sep 13, 2024
1 parent 912387a commit 4fcc72e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions operator/mina_account/lib/src/merkle_verifier.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use mina_bridge_core::proof::account_proof::MerkleNode;
use mina_curves::pasta::Fp;
use mina_p2p_messages::v2::{hash_with_kimchi, LedgerHash};
use mina_p2p_messages::v2::hash_with_kimchi;
use std::fmt::Write;

/// Based on OpenMina's implementation
Expand All @@ -23,7 +23,6 @@ pub fn verify_merkle_proof(merkle_leaf: Fp, merkle_path: Vec<MerkleNode>, merkle

hash_with_kimchi(param.as_str(), &hashes)
});
println!("{}", LedgerHash::from_fp(calculated_root));
calculated_root == merkle_root
}

Expand Down

0 comments on commit 4fcc72e

Please sign in to comment.