From 7396313311ab17cb30e2eef27cccf96f0a9e8f7f Mon Sep 17 00:00:00 2001 From: Tsahi Zidenberg Date: Thu, 12 Sep 2024 21:04:23 -0600 Subject: [PATCH] arbwasm: fix mininitgas return types --- src/precompiles/ArbWasm.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/precompiles/ArbWasm.sol b/src/precompiles/ArbWasm.sol index b690ed24..4906082b 100644 --- a/src/precompiles/ArbWasm.sol +++ b/src/precompiles/ArbWasm.sol @@ -82,7 +82,7 @@ interface ArbWasm { /// @notice Gets the minimum costs to invoke a program /// @return gas amount of gas in increments of 256 when not cached /// @return cached amount of gas in increments of 64 when cached - function minInitGas() external view returns (uint8 gas, uint8 cached); + function minInitGas() external view returns (uint64 gas, uint64 cached); /// @notice Gets the linear adjustment made to program init costs. /// @return percent the adjustment (100% = no adjustment).