Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/L2/predeploys/L1GasPriceOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ contract L1GasPriceOracle is OwnableBase, IL1GasPriceOracle {
/// @notice Indicates whether the network has gone through the Feynman upgrade.
bool public isFeynman;

/// @dev Gap added to ensure that `isGalileo` is in the next storage slot.
uint248 private __gap;

/// @notice Indicates whether the network has gone through the Galileo upgrade.
bool public isGalileo;

Expand Down
Loading