Skip to content

Commit

Permalink
fix typing of sender spec in test
Browse files Browse the repository at this point in the history
  • Loading branch information
45930 committed Aug 2, 2024
1 parent d2c9320 commit 332f371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/examples/zkapps/reducer/run-live.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ await MerkleListReducing.compile();
toc();
const merkleListReducerContract = new MerkleListReducing(addresses.contract);

let senderSpec = { sender, fee: 1000000000n };
let sender2Spec = { sender: sender2, fee: 1000000000n };
let senderSpec = { sender, fee: 1000000000 };
let sender2Spec = { sender: sender2, fee: 1000000000 };

tic('deploy contracts');
let deployTx = await Mina.transaction(senderSpec, async () => {
Expand Down

0 comments on commit 332f371

Please sign in to comment.