Skip to content

Commit

Permalink
fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Nov 20, 2023
1 parent 66a20f2 commit 1657407
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions yarn-project/end-to-end/src/e2e_liquidity_mining.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { AccountWallet, CheatCodes, CompleteAddress, DebugLogger } from '@aztec/aztec.js';
import { CircuitsWasm } from '@aztec/circuits.js';
import { Pedersen, SparseTree, newTree } from '@aztec/merkle-tree';
import { LiquidityMiningContract } from '@aztec/noir-contracts/types';

import { jest } from '@jest/globals';
import levelup from 'levelup';
import { type MemDown, default as memdown } from 'memdown';
import { default as memdown, type MemDown } from 'memdown';

import { setup } from './fixtures/utils.js';

Expand All @@ -32,7 +31,7 @@ describe('e2e_liquidity_mining', () => {
contract = await LiquidityMiningContract.deploy(wallets[0]).send().deployed();

const db = levelup(createMemDown());
const hasher = new Pedersen(await CircuitsWasm.get());
const hasher = new Pedersen();
const depth = 254;
simulatorTree = await newTree(SparseTree, db, hasher, 'test', depth);
}, 100_000);
Expand Down

0 comments on commit 1657407

Please sign in to comment.