mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 18:00:46 +00:00
updated constants.go
This commit is contained in:
parent
4624bbb988
commit
fc9effa05d
1 changed files with 6 additions and 4 deletions
|
|
@ -2,19 +2,21 @@ package common
|
||||||
|
|
||||||
const (
|
const (
|
||||||
RewardMasterPercent = 40
|
RewardMasterPercent = 40
|
||||||
RewardVoterPercent = 50
|
RewardVoterPercent = 30
|
||||||
RewardFoundationPercent = 10
|
RewardFoundationPercent = 30
|
||||||
HexSignMethod = "e341eaa4"
|
HexSignMethod = "e341eaa4"
|
||||||
HexSetSecret = "34d38600"
|
HexSetSecret = "34d38600"
|
||||||
HexSetOpening = "e11f5ba2"
|
HexSetOpening = "e11f5ba2"
|
||||||
EpocBlockSecret = 800
|
EpocBlockSecret = 800
|
||||||
EpocBlockOpening = 850
|
EpocBlockOpening = 850
|
||||||
EpocBlockRandomize = 900
|
EpocBlockRandomize = 900
|
||||||
MaxMasternodes = 150
|
MaxMasternodes = 21
|
||||||
LimitPenaltyEpoch = 4
|
LimitPenaltyEpoch = 4
|
||||||
BlocksPerYear = uint64(15768000)
|
BlocksPerYear = uint64(15768000)
|
||||||
LimitThresholdNonceInQueue = 10
|
LimitThresholdNonceInQueue = 10
|
||||||
MinGasPrice = 2500
|
MinGasPrice = 2500
|
||||||
|
|
||||||
|
// Maximum number of Masternodes Set to 21
|
||||||
)
|
)
|
||||||
|
|
||||||
var IsTestnet bool = false
|
var IsTestnet bool = false
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue