mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 22:26:42 +00:00
Merge pull request #375 from maticnetwork/krishna/update-mumbai-config
Update mumbai config
This commit is contained in:
commit
b91293a474
3 changed files with 13 additions and 6 deletions
|
|
@ -16,12 +16,15 @@
|
|||
"bor": {
|
||||
"jaipurBlock": 22770000,
|
||||
"period": {
|
||||
"0": 2
|
||||
"0": 2,
|
||||
"25275000": 5
|
||||
|
||||
},
|
||||
"producerDelay": 6,
|
||||
"sprint": 64,
|
||||
"backupMultiplier": {
|
||||
"0": 2
|
||||
"0": 2,
|
||||
"25275000": 5
|
||||
},
|
||||
"validatorContract": "0x0000000000000000000000000000000000001000",
|
||||
"stateReceiverContract": "0x0000000000000000000000000000000000001001",
|
||||
|
|
@ -31,12 +31,14 @@ var mumbaiTestnet = &Chain{
|
|||
Bor: ¶ms.BorConfig{
|
||||
JaipurBlock: 22770000,
|
||||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
},
|
||||
ProducerDelay: 6,
|
||||
Sprint: 64,
|
||||
BackupMultiplier: map[string]uint64{
|
||||
"0": 2,
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
},
|
||||
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
||||
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
|
|
@ -278,12 +278,14 @@ var (
|
|||
Bor: &BorConfig{
|
||||
JaipurBlock: 22770000,
|
||||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
},
|
||||
ProducerDelay: 6,
|
||||
Sprint: 64,
|
||||
BackupMultiplier: map[string]uint64{
|
||||
"0": 2,
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
},
|
||||
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
||||
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
Loading…
Reference in a new issue