Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add multiProofVerify #3276

Merged
merged 24 commits into from
May 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
Amxx committed May 24, 2022
commit 63ffc9129f657d0ea767498523d20fd1bcc3293d
4 changes: 2 additions & 2 deletions test/utils/cryptography/MerkleProof.test.js
Original file line number Diff line number Diff line change
@@ -103,9 +103,9 @@ contract('MerkleProof', function (accounts) {
root,
[ leaves[0], badLeave ], // A, E
[ leaves[1], fill, merkleTree.layers[1][1] ],
[ false, false, false ]
[ false, false, false ],
),
'MerkleProof: invalid multiproof'
'MerkleProof: invalid multiproof',
);
});
});