mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-10-01 01:06:17 -04:00
rename MerkleTree to make more clear that it has no output
This commit is contained in:
parent
0c4c27b7b6
commit
a58d60623b
@ -26,7 +26,7 @@ template DualMux() {
|
||||
|
||||
// Verifies that merkle proof is correct for given merkle root and a leaf
|
||||
// pathIndices input is an array of 0/1 selectors telling whether given pathElement is on the left or right side of merkle path
|
||||
template MerkleTree(levels) {
|
||||
template MerkleTreeChecker(levels) {
|
||||
signal input leaf;
|
||||
signal input root;
|
||||
signal input pathElements[levels];
|
||||
|
@ -43,7 +43,7 @@ template Withdraw(levels) {
|
||||
hasher.secret <== secret;
|
||||
hasher.nullifierHash === nullifierHash;
|
||||
|
||||
component tree = MerkleTree(levels);
|
||||
component tree = MerkleTreeChecker(levels);
|
||||
tree.leaf <== hasher.commitment;
|
||||
tree.root <== root;
|
||||
for (var i = 0; i < levels; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user