Pulse: Increase minimum service nodes required to 50

This commit is contained in:
Doyle 2020-07-10 17:46:14 +10:00
parent 254e6aa80d
commit 2fec391873
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ namespace service_nodes {
constexpr size_t PULSE_QUORUM_ENTROPY_LAG = 21; // How many blocks back from the tip of the Blockchain to source entropy for the Pulse quorums.
constexpr size_t PULSE_QUORUM_NUM_VALIDATORS = 11;
constexpr size_t PULSE_QUORUM_SIZE = PULSE_QUORUM_NUM_VALIDATORS + 1 /*Leader*/;
constexpr size_t PULSE_MIN_SERVICE_NODES = 20;
constexpr size_t PULSE_MIN_SERVICE_NODES = 50;
static_assert(PULSE_MIN_SERVICE_NODES >= PULSE_QUORUM_SIZE);
constexpr uint16_t pulse_validator_bit_mask()