Skip to content

Commit

Permalink
Merge pull request #253 from OffchainLabs/arbwasm_revert_fix
Browse files Browse the repository at this point in the history
arbwasm: fix mininitgas return types
  • Loading branch information
PlasmaPower authored Sep 24, 2024
2 parents 2376ee7 + db9f8b3 commit b5ef191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/precompiles/ArbWasm.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit b5ef191

Please sign in to comment.