Skip to content

Commit

Permalink
Increase max gas limit (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog authored Nov 8, 2024
1 parent 413599d commit 48f3e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SystemConfigOwnable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ contract SystemConfigOwnable is OwnableConfig, ISemver, IGasToken {
/// @notice The maximum gas limit that can be set for L2 blocks. This limit is used to enforce that the blocks
/// on L2 are not too large to process and prove. Over time, this value can be increased as various
/// optimizations and improvements are made to the system at large.
uint64 internal constant MAX_GAS_LIMIT = 200_000_000;
uint64 internal constant MAX_GAS_LIMIT = 1_000_000_000;

/// @notice Fixed L2 gas overhead. Used as part of the L2 fee calculation.
/// Deprecated since the Ecotone network upgrade
Expand Down

0 comments on commit 48f3e04

Please sign in to comment.