Skip to content
Open
Changes from all 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
2 changes: 1 addition & 1 deletion contracts/ConsensusUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ contract ConsensusUtils is EternalStorage, ValidatorSet {
uint256 public constant DECIMALS = 10 ** 18;
uint256 public constant MAX_VALIDATORS = 100;
uint256 public constant MIN_STAKE = 1e23; // 100,000
uint256 public constant MAX_STAKE = 1e25; // 10,000,000
uint256 public constant MAX_STAKE = 25e24; // 25,000,000
uint256 public constant CYCLE_DURATION_BLOCKS = 34560; // 48 hours [48*60*60/5]
uint256 public constant SNAPSHOTS_PER_CYCLE = 0; // snapshot each 288 minutes [34560/10/60*5]
uint256 public constant DEFAULT_VALIDATOR_FEE = 15e16; // 15%
Expand Down