Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcoinfinal committed Apr 13, 2018
1 parent c4a317e commit 46fffa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1380,11 +1380,11 @@ int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, i
nSubsidy = STATIC_POS_REWARD;
}

else if (pindexPrev->nHeight > 7000 && pindexPrev->nHeight <= 21600)
else if (pindexPrev->nHeight > 7000 && pindexPrev->nHeight <= 21700)
{
nSubsidy = 20 * COIN;
}
else if (pindexPrev->nHeight > 21600)
else if (pindexPrev->nHeight > 21700)
{
nSubsidy = 30 * COIN;

Expand Down

0 comments on commit 46fffa3

Please sign in to comment.