Skip to content

Commit

Permalink
tuning card stake rewards for next fork
Browse files Browse the repository at this point in the history
  • Loading branch information
BreakoutCoin committed Aug 13, 2017
1 parent 4dc715f commit 846274d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ struct AMOUNT GetProofOfStakeReward(CBlockIndex* pindexPrev, int nStakeColor)
else
{
struct AMOUNT stSubsidy = GetPoWSubsidy(1 + pindexPrev->nHeight);
nSubsidy = 2 * (stSubsidy.nValue + (nSubsidy * (stSubsidy.nValue / 100)));
nSubsidy = (10 * stSubsidy.nValue) + (nSubsidy * (stSubsidy.nValue / 10));

}
}
Expand Down

0 comments on commit 846274d

Please sign in to comment.