Skip to content

Commit 8f61fc8

Browse files
MariusVanDerWijdenholiman
authored andcommitted
params: set TerminalTotalDifficultyPassed to true (#25769)
* params: set TerminalTotalDifficultyPassed to true * Update params/config.go Co-authored-by: Martin Holst Swende <[email protected]>
1 parent 972007a commit 8f61fc8

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

params/config.go

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -59,25 +59,26 @@ var (
5959

6060
// MainnetChainConfig is the chain parameters to run a node on the main network.
6161
MainnetChainConfig = &ChainConfig{
62-
ChainID: big.NewInt(1),
63-
HomesteadBlock: big.NewInt(1_150_000),
64-
DAOForkBlock: big.NewInt(1_920_000),
65-
DAOForkSupport: true,
66-
EIP150Block: big.NewInt(2_463_000),
67-
EIP150Hash: common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"),
68-
EIP155Block: big.NewInt(2_675_000),
69-
EIP158Block: big.NewInt(2_675_000),
70-
ByzantiumBlock: big.NewInt(4_370_000),
71-
ConstantinopleBlock: big.NewInt(7_280_000),
72-
PetersburgBlock: big.NewInt(7_280_000),
73-
IstanbulBlock: big.NewInt(9_069_000),
74-
MuirGlacierBlock: big.NewInt(9_200_000),
75-
BerlinBlock: big.NewInt(12_244_000),
76-
LondonBlock: big.NewInt(12_965_000),
77-
ArrowGlacierBlock: big.NewInt(13_773_000),
78-
GrayGlacierBlock: big.NewInt(15_050_000),
79-
TerminalTotalDifficulty: MainnetTerminalTotalDifficulty, // 58_750_000_000_000_000_000_000
80-
Ethash: new(EthashConfig),
62+
ChainID: big.NewInt(1),
63+
HomesteadBlock: big.NewInt(1_150_000),
64+
DAOForkBlock: big.NewInt(1_920_000),
65+
DAOForkSupport: true,
66+
EIP150Block: big.NewInt(2_463_000),
67+
EIP150Hash: common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"),
68+
EIP155Block: big.NewInt(2_675_000),
69+
EIP158Block: big.NewInt(2_675_000),
70+
ByzantiumBlock: big.NewInt(4_370_000),
71+
ConstantinopleBlock: big.NewInt(7_280_000),
72+
PetersburgBlock: big.NewInt(7_280_000),
73+
IstanbulBlock: big.NewInt(9_069_000),
74+
MuirGlacierBlock: big.NewInt(9_200_000),
75+
BerlinBlock: big.NewInt(12_244_000),
76+
LondonBlock: big.NewInt(12_965_000),
77+
ArrowGlacierBlock: big.NewInt(13_773_000),
78+
GrayGlacierBlock: big.NewInt(15_050_000),
79+
TerminalTotalDifficulty: MainnetTerminalTotalDifficulty, // 58_750_000_000_000_000_000_000
80+
TerminalTotalDifficultyPassed: true,
81+
Ethash: new(EthashConfig),
8182
}
8283

8384
// MainnetTrustedCheckpoint contains the light client trusted checkpoint for the main network.

0 commit comments

Comments
 (0)