Skip to content

Commit

Permalink
fix changes to staking parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
hamuki committed Oct 14, 2016
1 parent ded3581 commit 19c518d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,8 @@ CBigNum bnProofOfStakeLimit(~uint256(0) >> 20);
CBigNum bnProofOfWorkLimitTestNet(~uint256(0) >> 16);

unsigned int nTargetSpacing = 30; // 30 seconds
// unsigned int nStakeMinAge = 24 * 60 * 60 ; // 24 hours
// unsigned int nStakeMaxAge = 25 * 60 * 60 ; //25 hours Max stake age

unsigned int nStakeMinAge = 30 ; // 24 hours
unsigned int nStakeMaxAge = -1 ; //25 hours Max stake age
unsigned int nStakeMinAge = 24 * 60 * 60 ; // 24 hours
unsigned int nStakeMaxAge = 25 * 60 * 60 ; //25 hours Max stake age
unsigned int nModifierInterval = 10 * 60 ; // time to elapse before new modifier is computed

int nCoinbaseMaturity = 20;
Expand Down

0 comments on commit 19c518d

Please sign in to comment.