increase block time

This commit is contained in:
Arpit Temani 2022-02-24 18:03:32 +05:30
parent 51d17ea43f
commit 555e238188
5 changed files with 95 additions and 7 deletions

View file

@ -16,12 +16,14 @@
"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",

File diff suppressed because one or more lines are too long

View file

@ -31,12 +31,14 @@ var mumbaiTestnet = &Chain{
Bor: &params.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",

View file

@ -309,12 +309,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",

View file

@ -24,7 +24,7 @@ const (
VersionMajor = 0 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 15 // Patch version component of the current release
VersionMeta = "beta-1" // Version metadata to append to the version string
VersionMeta = "beta-2" // Version metadata to append to the version string
)
// Version holds the textual version string.