Skip to content

Commit

Permalink
Adjusted reward distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
idapay committed Mar 15, 2018
1 parent deb95c8 commit 18abcb3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/validation.cpp
Expand Up @@ -1255,8 +1255,7 @@ CAmount GetMasternodePayment(int nHeight, CAmount blockValue)
int nMNPIPeriod = Params().GetConsensus().nMasternodePaymentsIncreasePeriod;

if(nHeight > nMNPIBlock) ret += blockValue * 0.30; // 60% total 3k
if(nHeight > nMNPIBlock+nMNPIPeriod) ret += blockValue * 0.1; // 70% total at 10k
if(nHeight > nMNPIBlock+47000) ret += blockValue * 0.1; // 80% total 50k
if(nHeight > nMNPIBlock+nMNPIPeriod) ret += blockValue * 0.2; // 80% total at 10k

return ret;
}
Expand Down

0 comments on commit 18abcb3

Please sign in to comment.