mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-08 09:15:04 -04:00
max leaves count fix
This commit is contained in:
parent
a64f41a44e
commit
9132aeb6d5
3 changed files with 5 additions and 5 deletions
|
@ -180,7 +180,7 @@ contract('MerkleTreeWithHistory', accounts => {
|
|||
zeroValue = 1337
|
||||
merkleTreeWithHistory = await MerkleTreeWithHistory.new(levels, zeroValue)
|
||||
|
||||
for (let i = 0; i < 2**(levels - 1); i++) {
|
||||
for (let i = 0; i < 2**levels; i++) {
|
||||
await merkleTreeWithHistory.insert(i+42).should.be.fulfilled
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue