From 69dc5852666b32b118438b521fcfab43e2208451 Mon Sep 17 00:00:00 2001 From: Mark Tyneway Date: Mon, 13 May 2024 19:18:23 +0200 Subject: [PATCH] build: fix --- op-chain-ops/upgrades/l1.go | 6 ------ 1 file changed, 6 deletions(-) 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") }