Skip to content

Commit

Permalink
- fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
iulianpascalau committed Sep 18, 2024
1 parent 52e63f0 commit 73b1f40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/deploy/evil-erc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ task("deploy-evil-erc", "Deploys EvilERC20 contract to use to test the bridge").

//whitelist tokens in safe
console.log("Whitelisting token ", usdcContract.target);
await safe.whitelistToken(usdcContract.target, "25000000", "100000000000", false, true);
await safe.whitelistToken(usdcContract.target, "25000000", "100000000000", false, true, 0, 0, 0);
});
2 changes: 1 addition & 1 deletion test/BridgeExecutor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("BridgeExecutor", function () {
genericErc20 = await deployContract(adminWallet, "GenericERC20", ["TSC", "TSC", 6]);
await genericErc20.mint(adminWallet.address, 1000);
await genericErc20.approve(erc20Safe.address, 1000);
await erc20Safe.whitelistToken(genericErc20.address, 0, 1000, false, true);
await erc20Safe.whitelistToken(genericErc20.address, 0, 1000, false, true, 0, 0, 0);
await erc20Safe.unpause();
}

Expand Down

0 comments on commit 73b1f40

Please sign in to comment.