Skip to content

Commit

Permalink
chore: remove extra println in noir protoco circuit (#3219)
Browse files Browse the repository at this point in the history
Smol PR to remove the extra println

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
kevaundray authored Nov 6, 2023
1 parent af93a33 commit 3295fdd
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ impl<N> MerkleTree<N> {

// 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]]);
}

Expand Down

0 comments on commit 3295fdd

Please sign in to comment.