mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
added indore block and parallel universe for mainnet (#913)
This commit is contained in:
parent
c3c3bb653d
commit
a055726eb0
3 changed files with 17 additions and 2 deletions
|
|
@ -16,6 +16,11 @@
|
||||||
"bor": {
|
"bor": {
|
||||||
"jaipurBlock": 23850000,
|
"jaipurBlock": 23850000,
|
||||||
"delhiBlock": 38189056,
|
"delhiBlock": 38189056,
|
||||||
|
"parallelUniverseBlock": 0,
|
||||||
|
"indoreBlock": 44915456,
|
||||||
|
"stateSyncConfirmationDelay": {
|
||||||
|
"44915456": 128
|
||||||
|
},
|
||||||
"period": {
|
"period": {
|
||||||
"0": 2
|
"0": 2
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -29,8 +29,13 @@ var mainnetBor = &Chain{
|
||||||
BerlinBlock: big.NewInt(14750000),
|
BerlinBlock: big.NewInt(14750000),
|
||||||
LondonBlock: big.NewInt(23850000),
|
LondonBlock: big.NewInt(23850000),
|
||||||
Bor: ¶ms.BorConfig{
|
Bor: ¶ms.BorConfig{
|
||||||
JaipurBlock: big.NewInt(23850000),
|
JaipurBlock: big.NewInt(23850000),
|
||||||
DelhiBlock: big.NewInt(38189056),
|
DelhiBlock: big.NewInt(38189056),
|
||||||
|
ParallelUniverseBlock: big.NewInt(0),
|
||||||
|
IndoreBlock: big.NewInt(44915456),
|
||||||
|
StateSyncConfirmationDelay: map[string]uint64{
|
||||||
|
"44915456": 128,
|
||||||
|
},
|
||||||
Period: map[string]uint64{
|
Period: map[string]uint64{
|
||||||
"0": 2,
|
"0": 2,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -412,6 +412,11 @@ var (
|
||||||
JaipurBlock: big.NewInt(23850000),
|
JaipurBlock: big.NewInt(23850000),
|
||||||
DelhiBlock: big.NewInt(38189056),
|
DelhiBlock: big.NewInt(38189056),
|
||||||
ParallelUniverseBlock: big.NewInt(0),
|
ParallelUniverseBlock: big.NewInt(0),
|
||||||
|
IndoreBlock: big.NewInt(44915456),
|
||||||
|
StateSyncConfirmationDelay: map[string]uint64{
|
||||||
|
"44915456": 128,
|
||||||
|
},
|
||||||
|
|
||||||
Period: map[string]uint64{
|
Period: map[string]uint64{
|
||||||
"0": 2,
|
"0": 2,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue