mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 14:33:52 +00:00
increase block time
This commit is contained in:
parent
51d17ea43f
commit
555e238188
5 changed files with 95 additions and 7 deletions
|
|
@ -16,12 +16,14 @@
|
||||||
"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",
|
||||||
|
|
|
||||||
82
builder/files/genesys-testnet-v4.json
Normal file
82
builder/files/genesys-testnet-v4.json
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -31,12 +31,14 @@ var mumbaiTestnet = &Chain{
|
||||||
Bor: ¶ms.BorConfig{
|
Bor: ¶ms.BorConfig{
|
||||||
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",
|
||||||
|
|
|
||||||
|
|
@ -309,12 +309,14 @@ var (
|
||||||
Bor: &BorConfig{
|
Bor: &BorConfig{
|
||||||
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",
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ const (
|
||||||
VersionMajor = 0 // Major version component of the current release
|
VersionMajor = 0 // Major version component of the current release
|
||||||
VersionMinor = 2 // Minor version component of the current release
|
VersionMinor = 2 // Minor version component of the current release
|
||||||
VersionPatch = 15 // Patch 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.
|
// Version holds the textual version string.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue