diff --git a/eth/ethconfig/config.go b/eth/ethconfig/config.go index dae83378512..5750e1000f6 100644 --- a/eth/ethconfig/config.go +++ b/eth/ethconfig/config.go @@ -261,7 +261,6 @@ type Sync struct { // Chains where snapshots are enabled by default var ChainsWithSnapshots = map[string]struct{}{ networkname.MainnetChainName: {}, - networkname.HoleskyChainName: {}, networkname.SepoliaChainName: {}, networkname.GoerliChainName: {}, networkname.MumbaiChainName: {}, diff --git a/params/chainspecs/holesky.json b/params/chainspecs/holesky.json index fba46d770f4..da1185b1ef9 100644 --- a/params/chainspecs/holesky.json +++ b/params/chainspecs/holesky.json @@ -13,6 +13,5 @@ "mergeForkBlock": 0, "terminalTotalDifficulty": 0, "terminalTotalDifficultyPassed": true, - "shanghaiTime": 1694884704, - "cancunTime": 2000000000 + "shanghaiTime": 1694884704 } \ No newline at end of file diff --git a/params/config.go b/params/config.go index 70a33d302b2..b5593605af9 100644 --- a/params/config.go +++ b/params/config.go @@ -286,6 +286,7 @@ func IsChainPoS(chainConfig *chain.Config, currentTDProvider func() *big.Int) bo func isChainIDPoS(chainID *big.Int) bool { ids := []*big.Int{ MainnetChainConfig.ChainID, + HoleskyChainConfig.ChainID, GoerliChainConfig.ChainID, SepoliaChainConfig.ChainID, GnosisChainConfig.ChainID,