Skip to content

Commit

Permalink
fix nit on mint amount on archiver test
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-kothari committed Sep 29, 2023
1 parent 9295527 commit a153ee7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('archiver integration with l1 to l2 messages', () => {

// cancel the message
logger('cancelling the l1 to l2 message');
const argsCancel = [100n, owner.toString(), deadline, secretString, 0n] as const;
const argsCancel = [mintAmount, owner.toString(), deadline, secretString, 0n] as const;
await tokenPortal.write.cancelL1ToAztecMessagePublic(argsCancel, { gas: 1_000_000n } as any);
expect(await underlyingERC20.read.balanceOf([ethAccount.toString()])).toBe(1000000n);
// let archiver sync up
Expand Down

0 comments on commit a153ee7

Please sign in to comment.