mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
fix should insert tree test
This commit is contained in:
parent
9cecb7b3ec
commit
e21e1c87e7
@ -71,13 +71,13 @@ describe('MerkleTreeWithHistory', function () {
|
|||||||
it('should insert', async () => {
|
it('should insert', async () => {
|
||||||
const { merkleTreeWithHistory } = await loadFixture(fixture)
|
const { merkleTreeWithHistory } = await loadFixture(fixture)
|
||||||
const tree = getNewTree()
|
const tree = getNewTree()
|
||||||
merkleTreeWithHistory.insert(toFixedHex(123), toFixedHex(456))
|
await merkleTreeWithHistory.insert(toFixedHex(123), toFixedHex(456))
|
||||||
tree.bulkInsert([123, 456])
|
tree.bulkInsert([123, 456])
|
||||||
expect(tree.root()).to.be.be.equal(await merkleTreeWithHistory.getLastRoot())
|
expect(tree.root()).to.be.be.equal(await merkleTreeWithHistory.getLastRoot())
|
||||||
|
|
||||||
merkleTreeWithHistory.insert(toFixedHex(678), toFixedHex(876))
|
await merkleTreeWithHistory.insert(toFixedHex(678), toFixedHex(876))
|
||||||
tree.bulkInsert([678, 876])
|
tree.bulkInsert([678, 876])
|
||||||
expect(tree.root()._hex).to.be.be.equal(await merkleTreeWithHistory.getLastRoot())
|
expect(tree.root()).to.be.be.equal(await merkleTreeWithHistory.getLastRoot())
|
||||||
})
|
})
|
||||||
|
|
||||||
it('hasher gas', async () => {
|
it('hasher gas', async () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user