mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
added IndoreBlock for Mumbai chain (#892)
This commit is contained in:
parent
f96c668baf
commit
4d23e6de33
5 changed files with 28 additions and 4 deletions
|
|
@ -16,6 +16,11 @@
|
|||
"bor": {
|
||||
"jaipurBlock": 22770000,
|
||||
"delhiBlock": 29638656,
|
||||
"parallelUniverseBlock": 0,
|
||||
"indoreBlock": 36877056,
|
||||
"stateSyncConfirmationDelay": {
|
||||
"36877056": 128
|
||||
},
|
||||
"period": {
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
|
|
|
|||
|
|
@ -31,6 +31,11 @@ var mumbaiTestnet = &Chain{
|
|||
Bor: ¶ms.BorConfig{
|
||||
JaipurBlock: big.NewInt(22770000),
|
||||
DelhiBlock: big.NewInt(29638656),
|
||||
ParallelUniverseBlock: big.NewInt(0),
|
||||
IndoreBlock: big.NewInt(36877056),
|
||||
StateSyncConfirmationDelay: map[string]uint64{
|
||||
"36877056": 128,
|
||||
},
|
||||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
|
|
|
|||
|
|
@ -48,7 +48,12 @@
|
|||
"22640000": "0x70bcA57F4579f58670aB2d18Ef16e02C17553C38"
|
||||
},
|
||||
"jaipurBlock": 22770000,
|
||||
"delhiBlock": 29638656
|
||||
"delhiBlock": 29638656,
|
||||
"parallelUniverseBlock": 0,
|
||||
"indoreBlock": 36877056,
|
||||
"stateSyncConfirmationDelay": {
|
||||
"36877056": 128
|
||||
}
|
||||
}
|
||||
},
|
||||
"nonce": "0x0",
|
||||
|
|
|
|||
|
|
@ -50,7 +50,12 @@
|
|||
"22640000":"0x70bcA57F4579f58670aB2d18Ef16e02C17553C38"
|
||||
},
|
||||
"jaipurBlock":22770000,
|
||||
"delhiBlock": 29638656
|
||||
"delhiBlock": 29638656,
|
||||
"parallelUniverseBlock": 0,
|
||||
"indoreBlock": 36877056,
|
||||
"stateSyncConfirmationDelay": {
|
||||
"36877056": 128
|
||||
}
|
||||
}
|
||||
},
|
||||
"nonce":"0x0",
|
||||
|
|
|
|||
|
|
@ -353,6 +353,10 @@ var (
|
|||
JaipurBlock: big.NewInt(22770000),
|
||||
DelhiBlock: big.NewInt(29638656),
|
||||
ParallelUniverseBlock: big.NewInt(0),
|
||||
IndoreBlock: big.NewInt(36877056),
|
||||
StateSyncConfirmationDelay: map[string]uint64{
|
||||
"36877056": 128,
|
||||
},
|
||||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
|
|
|
|||
Loading…
Reference in a new issue