fix test of capacity of Merkle tree

This commit is contained in:
Drygin 2019-09-04 16:08:11 +03:00
parent ec30e2d357
commit 374dd420f5
1 changed files with 1 additions and 1 deletions

View File

@ -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
}