Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions builder/files/genesys-testnet-v4.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 4 additions & 2 deletions internal/cli/server/chains/mumbai.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 4 additions & 2 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down