Skip to content

Commit

Permalink
fix: decrease arb-goerli hardcoded gaslimit (#4596)
Browse files Browse the repository at this point in the history
  • Loading branch information
wanglonghong authored Jun 27, 2023
1 parent 4fd56a3 commit 2b5d133
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/adapters/relayer/src/gelato/gelato.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,8 @@ const GAS_LIMIT_FOR_RELAYER = (chainId: number): string => {
case 42161: {
return "100000000";
}
case 421613: {
return "100000000";
}
default: {
return "12000000";
return "6000000";
}
}
};
Expand Down

0 comments on commit 2b5d133

Please sign in to comment.