mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
fix: update mumbai genesis config
This commit is contained in:
parent
98123ba757
commit
8ea9231c5f
2 changed files with 9 additions and 4 deletions
|
|
@ -16,12 +16,15 @@
|
||||||
"bor": {
|
"bor": {
|
||||||
"jaipurBlock": 22770000,
|
"jaipurBlock": 22770000,
|
||||||
"period": {
|
"period": {
|
||||||
"0": 2
|
"0": 2,
|
||||||
|
"25275000": 5
|
||||||
|
|
||||||
},
|
},
|
||||||
"producerDelay": 6,
|
"producerDelay": 6,
|
||||||
"sprint": 64,
|
"sprint": 64,
|
||||||
"backupMultiplier": {
|
"backupMultiplier": {
|
||||||
"0": 2
|
"0": 2,
|
||||||
|
"25275000": 5
|
||||||
},
|
},
|
||||||
"validatorContract": "0x0000000000000000000000000000000000001000",
|
"validatorContract": "0x0000000000000000000000000000000000001000",
|
||||||
"stateReceiverContract": "0x0000000000000000000000000000000000001001",
|
"stateReceiverContract": "0x0000000000000000000000000000000000001001",
|
||||||
|
|
|
||||||
|
|
@ -32,11 +32,13 @@ var mumbaiTestnet = &Chain{
|
||||||
JaipurBlock: 22770000,
|
JaipurBlock: 22770000,
|
||||||
Period: map[string]uint64{
|
Period: map[string]uint64{
|
||||||
"0": 2,
|
"0": 2,
|
||||||
|
"25275000": 5,
|
||||||
},
|
},
|
||||||
ProducerDelay: 6,
|
ProducerDelay: 6,
|
||||||
Sprint: 64,
|
Sprint: 64,
|
||||||
BackupMultiplier: map[string]uint64{
|
BackupMultiplier: map[string]uint64{
|
||||||
"0": 2,
|
"0": 2,
|
||||||
|
"25275000": 5,
|
||||||
},
|
},
|
||||||
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
||||||
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue