mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
update devnet reward parameter (#980)
Co-authored-by: liam.lai <liam.lai@us>
This commit is contained in:
parent
ab0ce75ede
commit
9656e2d1c4
2 changed files with 18 additions and 4 deletions
|
|
@ -28,7 +28,7 @@ var DevnetConstant = constant{
|
||||||
tipXDCXReceiverDisable: big.NewInt(0),
|
tipXDCXReceiverDisable: big.NewInt(0),
|
||||||
eip1559Block: big.NewInt(32400),
|
eip1559Block: big.NewInt(32400),
|
||||||
cancunBlock: big.NewInt(43200),
|
cancunBlock: big.NewInt(43200),
|
||||||
tipUpgradeReward: big.NewInt(1773000),
|
tipUpgradeReward: big.NewInt(243000),
|
||||||
tipEpochHalving: big.NewInt(9999999999),
|
tipEpochHalving: big.NewInt(9999999999),
|
||||||
|
|
||||||
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
trc21IssuerSMC: HexToAddress("0x8c0faeb5C6bEd2129b8674F262Fd45c4e9468bee"),
|
||||||
|
|
|
||||||
|
|
@ -147,9 +147,23 @@ var (
|
||||||
MaxMasternodes: 12,
|
MaxMasternodes: 12,
|
||||||
MaxProtectorNodes: 0,
|
MaxProtectorNodes: 0,
|
||||||
MaxObverserNodes: 1000,
|
MaxObverserNodes: 1000,
|
||||||
MasternodeReward: 57.06,
|
MasternodeReward: 63.42, // 57.078 goes to node, 6.34 goes to foundation
|
||||||
ProtectorReward: 45.25,
|
ProtectorReward: 50.27, // 45.243 goes to node, 5.02 goes to foundation
|
||||||
ObserverReward: 22.62,
|
ObserverReward: 25.13, // 22.671 goes to node, 2.51 goes to foundation
|
||||||
|
},
|
||||||
|
300000: {
|
||||||
|
SwitchRound: 300000,
|
||||||
|
CertThreshold: 0.667,
|
||||||
|
TimeoutSyncThreshold: 3,
|
||||||
|
TimeoutPeriod: 5,
|
||||||
|
MinePeriod: 2,
|
||||||
|
ExpTimeoutConfig: ExpTimeoutConfig{Base: 2.0, MaxExponent: 5},
|
||||||
|
MaxMasternodes: 12,
|
||||||
|
MaxProtectorNodes: 2,
|
||||||
|
MaxObverserNodes: 2,
|
||||||
|
MasternodeReward: 63.42, // 57.078 goes to node, 6.34 goes to foundation
|
||||||
|
ProtectorReward: 50.27, // 45.243 goes to node, 5.02 goes to foundation
|
||||||
|
ObserverReward: 25.13, // 22.671 goes to node, 2.51 goes to foundation
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue