Skip to content

Commit

Permalink
Increase the initial supply needed for the RCO. (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandromgk authored and elmora-do committed Jan 29, 2018
1 parent 125e780 commit d4239b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ CAmount GetBlockSubsidy(int nPrevBits, int nPrevHeight, const Consensus::Params&

if (nPrevHeight < 100)
{
nSubsidyBase = 35000000;
nSubsidyBase = 35500000;
} else {
// 11111111111/(((x+4201)/9)^2)
// nSubsidyBase = (11111111111.0 / (pow((dDiff+4201.0)/9.0,2.0)));
Expand All @@ -1263,7 +1263,7 @@ CAmount GetBlockSubsidy(int nPrevBits, int nPrevHeight, const Consensus::Params&
CAmount GetMasternodePayment(int nHeight, CAmount blockValue)
{
double dMasternodePart = 9.0/16.0;
CAmount ret = blockValue * dMasternodePart; // 45%
CAmount ret = blockValue * dMasternodePart; // 45% of the total block reward.
return ret;
}

Expand Down

0 comments on commit d4239b4

Please sign in to comment.