Skip to content

Commit

Permalink
Fix deployment in e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Aug 2, 2023
1 parent 76e8b4c commit 65490e8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions yarn-project/end-to-end/src/e2e_escrow_contract.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ describe('e2e_escrow_contract', () => {
logger(`Escrow contract deployed at ${escrowContract.address}`);

// Deploy ZK token contract and mint funds for the escrow contract
zkTokenContract = await ZkTokenContract.deploy(aztecRpcServer, 100n, escrowContract.address)
.send()
.wait()
.then(async r => await ZkTokenContract.create(r.contractAddress!, wallet));
zkTokenContract = await ZkTokenContract.deploy(wallet, 100n, escrowContract.address).send().deployed();
logger(`Token contract deployed at ${zkTokenContract.address}`);
}, 100_000);

Expand Down

0 comments on commit 65490e8

Please sign in to comment.