mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
update devnet config to test reward (#951)
* update devnet config to test reward * udpate reward --------- Co-authored-by: liam.lai <liam.lai@us>
This commit is contained in:
parent
63b04b4114
commit
4f98a8b81c
1 changed files with 22 additions and 18 deletions
|
|
@ -110,42 +110,46 @@ var (
|
|||
|
||||
DevnetV2Configs = map[uint64]*V2Config{
|
||||
Default: {
|
||||
MaxMasternodes: 108,
|
||||
SwitchRound: 0,
|
||||
CertThreshold: 0.667,
|
||||
TimeoutSyncThreshold: 3,
|
||||
TimeoutPeriod: 5,
|
||||
MinePeriod: 2,
|
||||
ExpTimeoutConfig: ExpTimeoutConfig{Base: 2.0, MaxExponent: 5},
|
||||
MaxMasternodes: 108,
|
||||
MaxProtectorNodes: 100,
|
||||
MaxObverserNodes: 1000,
|
||||
MasternodeReward: 5000,
|
||||
ProtectorReward: 4000,
|
||||
ObserverReward: 1000,
|
||||
},
|
||||
2053800: {
|
||||
252000: {
|
||||
SwitchRound: 250000,
|
||||
CertThreshold: 0.667,
|
||||
TimeoutSyncThreshold: 3,
|
||||
TimeoutPeriod: 5,
|
||||
MinePeriod: 2,
|
||||
ExpTimeoutConfig: ExpTimeoutConfig{Base: 2.0, MaxExponent: 5},
|
||||
MaxMasternodes: 10,
|
||||
MaxProtectorNodes: 3,
|
||||
SwitchRound: 2053800,
|
||||
CertThreshold: 0.667,
|
||||
TimeoutSyncThreshold: 3,
|
||||
TimeoutPeriod: 5,
|
||||
MinePeriod: 2,
|
||||
ExpTimeoutConfig: ExpTimeoutConfig{Base: 2.0, MaxExponent: 5},
|
||||
MasternodeReward: 3000,
|
||||
ProtectorReward: 2000,
|
||||
ObserverReward: 1000,
|
||||
MaxObverserNodes: 1,
|
||||
MasternodeReward: 57.06,
|
||||
ProtectorReward: 45.25,
|
||||
ObserverReward: 22.62,
|
||||
},
|
||||
2090700: {
|
||||
MaxMasternodes: 10,
|
||||
MaxProtectorNodes: 0,
|
||||
SwitchRound: 2090700,
|
||||
261000: {
|
||||
SwitchRound: 261000,
|
||||
CertThreshold: 0.667,
|
||||
TimeoutSyncThreshold: 3,
|
||||
TimeoutPeriod: 5,
|
||||
MinePeriod: 2,
|
||||
ExpTimeoutConfig: ExpTimeoutConfig{Base: 2.0, MaxExponent: 5},
|
||||
MasternodeReward: 5000,
|
||||
ProtectorReward: 4000,
|
||||
ObserverReward: 1000,
|
||||
MaxMasternodes: 12,
|
||||
MaxProtectorNodes: 0,
|
||||
MaxObverserNodes: 1000,
|
||||
MasternodeReward: 57.06,
|
||||
ProtectorReward: 45.25,
|
||||
ObserverReward: 22.62,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue