Browse Source

Change to max 5 consecutive PoS blocks

pull/434/head
miketout 2 years ago
parent
commit
31b085cc2e
  1. 4
      src/komodo_globals.h

4
src/komodo_globals.h

@ -97,8 +97,8 @@ uint32_t ASSETCHAINS_STARTING_DIFF = 0;
int32_t ASSETCHAINS_LWMAPOS = 0; // percentage of blocks should be PoS
int32_t VERUS_BLOCK_POSUNITS = 1024; // one block is 1000 units
int32_t VERUS_MIN_STAKEAGE = 150; // 1/2 this should also be a cap on the POS averaging window, or startup could be too easy
int32_t VERUS_CONSECUTIVE_POS_THRESHOLD = 7; // this gives us 8 in a row
int32_t VERUS_PBAAS_CONSECUTIVE_POS_THRESHOLD = 2; // reduce to max 4 in a row
int32_t VERUS_CONSECUTIVE_POS_THRESHOLD = 7; // this gives us 9 in a row
int32_t VERUS_PBAAS_CONSECUTIVE_POS_THRESHOLD = 3; // reduce to max 5 in a row
int32_t VERUS_NOPOS_THRESHHOLD = 150; // if we have no POS blocks in this many blocks, reset difficulty
int32_t VERUS_PBAAS_NOPOS_THRESHHOLD = 150; // extend for PBaaS to enable more variability in staking supply
int32_t PBAAS_STARTBLOCK = 0; // the parent blockchain must be notarized at this value in block 1 for it to be accepted

Loading…
Cancel
Save