Skip to content

Commit

Permalink
Fix PoW Reward
Browse files Browse the repository at this point in the history
  • Loading branch information
clifer committed Aug 7, 2017
1 parent 18b36c1 commit f5b23e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Expand Up @@ -1465,7 +1465,7 @@ int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
} else if (nHeight == 2) {
nSubsidy = 20000 * COIN;
} else if (nHeight > 2) {
nSubsidy = .5 * COIN;
nSubsidy = 1 * COIN;
}

return nSubsidy + nFees;
Expand Down

0 comments on commit f5b23e9

Please sign in to comment.