mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
change 5 sec to 2 sec
This commit is contained in:
parent
22988ac97b
commit
d5482469d0
5 changed files with 20 additions and 6 deletions
|
|
@ -18,7 +18,8 @@
|
|||
"delhiBlock": 29389056,
|
||||
"period": {
|
||||
"0": 2,
|
||||
"25275000": 5
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"producerDelay": {
|
||||
"0": 6,
|
||||
|
|
@ -30,7 +31,8 @@
|
|||
},
|
||||
"backupMultiplier": {
|
||||
"0": 2,
|
||||
"25275000": 5
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"validatorContract": "0x0000000000000000000000000000000000001000",
|
||||
"stateReceiverContract": "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
|
|
@ -34,6 +34,7 @@ var mumbaiTestnet = &Chain{
|
|||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2,
|
||||
},
|
||||
ProducerDelay: map[string]uint64{
|
||||
"0": 6,
|
||||
|
|
@ -46,6 +47,7 @@ var mumbaiTestnet = &Chain{
|
|||
BackupMultiplier: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2,
|
||||
},
|
||||
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
||||
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
|
|
@ -16,7 +16,9 @@
|
|||
"londonBlock": 13996000,
|
||||
"bor": {
|
||||
"period": {
|
||||
"0": 2
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"producerDelay": {
|
||||
"0": 6,
|
||||
|
|
@ -27,7 +29,9 @@
|
|||
"29389056": 16
|
||||
},
|
||||
"backupMultiplier": {
|
||||
"0": 2
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"validatorContract": "0x0000000000000000000000000000000000001000",
|
||||
"stateReceiverContract": "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
|
|
@ -18,7 +18,9 @@
|
|||
"londonBlock":13996000,
|
||||
"bor":{
|
||||
"period":{
|
||||
"0":2
|
||||
"0":2,
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"producerDelay":{
|
||||
"0": 6,
|
||||
|
|
@ -29,7 +31,9 @@
|
|||
"29389056": 16
|
||||
},
|
||||
"backupMultiplier":{
|
||||
"0":2
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2
|
||||
},
|
||||
"validatorContract":"0x0000000000000000000000000000000000001000",
|
||||
"stateReceiverContract":"0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
|
|
@ -354,6 +354,7 @@ var (
|
|||
Period: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2,
|
||||
},
|
||||
ProducerDelay: map[string]uint64{
|
||||
"0": 6,
|
||||
|
|
@ -366,6 +367,7 @@ var (
|
|||
BackupMultiplier: map[string]uint64{
|
||||
"0": 2,
|
||||
"25275000": 5,
|
||||
"29389056": 2,
|
||||
},
|
||||
ValidatorContract: "0x0000000000000000000000000000000000001000",
|
||||
StateReceiverContract: "0x0000000000000000000000000000000000001001",
|
||||
|
|
|
|||
Loading…
Reference in a new issue