Skip to content

Commit

Permalink
fix deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
jj1980a committed Sep 13, 2024
1 parent 04493e7 commit bc6f32a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/deploy-gas-calculator.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ contract DeployGasCalculatorScript is DeployBaseScript {
if (chainId == 8453 || chainId == 84_532) {
// Base or Base Sepolia
BaseGasCalculator gasCalculator = new BaseGasCalculator({
_gasPriceOracle: BASE_GAS_PRICE_ORACLE,
_calldataLengthOffset: BASE_CALLDATA_LENGTH_OFFSET
gasPriceOracle: BASE_GAS_PRICE_ORACLE,
calldataLenOffset: BASE_CALLDATA_LENGTH_OFFSET
});
deploymentAddr = address(gasCalculator);
} else {
Expand Down

0 comments on commit bc6f32a

Please sign in to comment.