forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ethereum#271 from nguyenbatam/limit_max_nonce_tran…
…saction_in_queue limit max threshold nonce in queue
- Loading branch information
Showing
2 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
package common | ||
|
||
const ( | ||
RewardMasterPercent = 40 | ||
RewardVoterPercent = 50 | ||
RewardFoundationPercent = 10 | ||
HexSignMethod = "e341eaa4" | ||
HexSetSecret = "34d38600" | ||
HexSetOpening = "e11f5ba2" | ||
EpocBlockSecret = 800 | ||
EpocBlockOpening = 850 | ||
EpocBlockRandomize = 900 | ||
MaxMasternodes = 150 | ||
LimitPenaltyEpoch = 4 | ||
BlocksPerYear = uint64(15768000) | ||
RewardMasterPercent = 40 | ||
RewardVoterPercent = 50 | ||
RewardFoundationPercent = 10 | ||
HexSignMethod = "e341eaa4" | ||
HexSetSecret = "34d38600" | ||
HexSetOpening = "e11f5ba2" | ||
EpocBlockSecret = 800 | ||
EpocBlockOpening = 850 | ||
EpocBlockRandomize = 900 | ||
MaxMasternodes = 150 | ||
LimitPenaltyEpoch = 4 | ||
BlocksPerYear = uint64(15768000) | ||
LimitThresholdNonceInQueue = 10 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters