fix imports

This commit is contained in:
Smart 2022-03-01 19:46:29 +10:00
parent 6173676074
commit fba9bab7a8
3 changed files with 3 additions and 6 deletions

View File

@ -1,6 +1,5 @@
import { defaultHash, Element, HashFunction, MerkleTreeOptions, ProofPath, SerializedTreeState, TreeEdge } from './'
export default class MerkleTree {
levels: number
private _hashFn: HashFunction<Element>

View File

@ -1,7 +1,6 @@
import { MerkleTree } from '../src'
import { MerkleTree, TreeEdge } from '../src'
import { assert, should } from 'chai'
import { it } from 'mocha'
import { TreeEdge } from '../lib'
describe('MerkleTree', () => {

View File

@ -1,7 +1,6 @@
import { Element, MerkleTree, PartialMerkleTree } from '../src'
import { it } from 'mocha'
import { should } from 'chai'
import * as assert from 'assert'
import { assert, should } from 'chai'
describe('PartialMerkleTree', () => {
const getTestTrees = (levels: number, elements: Element[], edgeElement: Element) => {
@ -74,7 +73,7 @@ describe('PartialMerkleTree', () => {
}).timeout(10000)
it('should fail to insert too many elements', () => {
const { fullTree, partialTree } = getTestTrees(2, [1, 2, 3, 4], 3)
const { partialTree } = getTestTrees(2, [1, 2, 3, 4], 3)
const call = () => partialTree.bulkInsert([5, 6, 7])
should().throw(call, 'Tree is full')
})