diff --git a/op-chain-ops/upgrades/l1.go b/op-chain-ops/upgrades/l1.go index 08abc5d59738..2f5e638113be 100644 --- a/op-chain-ops/upgrades/l1.go +++ b/op-chain-ops/upgrades/l1.go @@ -700,12 +700,6 @@ func SystemConfig(batch *safe.Batch, implementations superchain.ImplementationLi } if config != nil { - if gasPriceOracleOverhead.Uint64() != config.GasPriceOracleOverhead { - return fmt.Errorf("GasPriceOracleOverhead address doesn't match config") - } - if gasPriceOracleScalar.Uint64() != config.GasPriceOracleScalar { - return fmt.Errorf("GasPriceOracleScalar address doesn't match config") - } if batcherHash != common.BytesToHash(config.BatchSenderAddress.Bytes()) { return fmt.Errorf("BatchSenderAddress address doesn't match config") }