From dbaa55d687de383f53ea463cd82efe13107ee6d7 Mon Sep 17 00:00:00 2001 From: geoknee Date: Tue, 27 Aug 2024 11:52:27 +0100 Subject: [PATCH] Remove Optimism config overrides (these will be pushed down into the registry) --- core/superchain_test.go | 3 ++- params/superchain.go | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/core/superchain_test.go b/core/superchain_test.go index 6ed8d8ad33..85027e79d4 100644 --- a/core/superchain_test.go +++ b/core/superchain_test.go @@ -11,9 +11,10 @@ import ( func TestOPStackGenesis(t *testing.T) { for id := range superchain.OPChains { + t.Log(id) _, err := LoadOPStackGenesis(id) if err != nil { - t.Error(err) + t.Error(id, err) } } } diff --git a/params/superchain.go b/params/superchain.go index 5af9a640f0..f9542070bc 100644 --- a/params/superchain.go +++ b/params/superchain.go @@ -86,11 +86,8 @@ func LoadOPStackChainConfig(chainID uint64) (*ChainConfig, error) { out.GrayGlacierBlock = big.NewInt(105235063) out.MergeNetsplitBlock = big.NewInt(105235063) out.BedrockBlock = big.NewInt(105235063) - case baseSepoliaChainID: - out.Optimism.EIP1559Elasticity = 10 case devnetChainID: out.RegolithTime = &devnetRegolithTime - out.Optimism.EIP1559Elasticity = 10 } return out, nil