Skip to content

Commit bddc50e

Browse files
fix: script to nativeBatchLimit for verifying
Ticket: COIN-3589
1 parent 0cd02d2 commit bddc50e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/deployBatcherContract.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,21 +79,22 @@ async function main() {
7979
console.log('Done waiting, verifying');
8080
await verifyContract(contractName, batcher.address, [
8181
transferGasLimit,
82-
erc20BatchLimit
82+
erc20BatchLimit,
83+
nativeBatchLimit
8384
]);
8485
console.log('Contracts verified');
8586
}
8687

8788
async function verifyContract(
8889
contractName: string,
8990
contractAddress: string,
90-
constructorArguments: [string, number],
91+
constructorArguments: [string, number, number],
9192
contract?: string
9293
) {
9394
try {
9495
const verifyContractArgs: {
9596
address: string;
96-
constructorArguments: [string, number];
97+
constructorArguments: [string, number, number];
9798
contract?: string;
9899
} = {
99100
address: contractAddress,

0 commit comments

Comments
 (0)