mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-06 12:03:47 +00:00
Finalize mainnet cancun/napoli HF block number (#1178)
This commit is contained in:
parent
199eca46eb
commit
53ba03b2c2
3 changed files with 4 additions and 1 deletions
|
|
@ -13,7 +13,8 @@
|
|||
"muirGlacierBlock": 3395000,
|
||||
"berlinBlock": 14750000,
|
||||
"londonBlock": 23850000,
|
||||
"shanghaiBlock":50523000,
|
||||
"shanghaiBlock": 50523000,
|
||||
"cancunBlock": 54876000,
|
||||
"bor": {
|
||||
"jaipurBlock": 23850000,
|
||||
"delhiBlock": 38189056,
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ var mainnetBor = &Chain{
|
|||
BerlinBlock: big.NewInt(14750000),
|
||||
LondonBlock: big.NewInt(23850000),
|
||||
ShanghaiBlock: big.NewInt(50523000),
|
||||
CancunBlock: big.NewInt(54876000),
|
||||
Bor: ¶ms.BorConfig{
|
||||
JaipurBlock: big.NewInt(23850000),
|
||||
DelhiBlock: big.NewInt(38189056),
|
||||
|
|
|
|||
|
|
@ -262,6 +262,7 @@ var (
|
|||
BerlinBlock: big.NewInt(14750000),
|
||||
LondonBlock: big.NewInt(23850000),
|
||||
ShanghaiBlock: big.NewInt(50523000),
|
||||
CancunBlock: big.NewInt(54876000),
|
||||
Bor: &BorConfig{
|
||||
JaipurBlock: big.NewInt(23850000),
|
||||
DelhiBlock: big.NewInt(38189056),
|
||||
|
|
|
|||
Loading…
Reference in a new issue