Skip to content

Commit c322b5a

Browse files
committed
remove POC test
1 parent dd1eb3d commit c322b5a

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

test/data/IncrementalMerkleTree.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,6 @@ describe('IncrementalMerkleTree', function () {
9494

9595
expect(await instance.callStatic.root()).to.equal(hash);
9696
});
97-
98-
it('POC: returns Merkle root derived from elements contained in unbalanced tree', async () => {
99-
const hash_a = randomHash();
100-
const hash_b = randomHash();
101-
const hash_c = randomHash();
102-
103-
const leaves = [hash_a, hash_b, hash_c];
104-
const tree = new MerkleTree(leaves, keccak256);
105-
const root = tree.getHexRoot();
106-
107-
await instance.push(hash_a);
108-
await instance.push(hash_b);
109-
await instance.push(hash_c);
110-
111-
expect(await instance.callStatic.root()).to.equal(root);
112-
});
11397
});
11498

11599
describe('#push', () => {

0 commit comments

Comments
 (0)