From f5b23e99a7a8c3e95d1e533240a446168cc37e3b Mon Sep 17 00:00:00 2001 From: clifer Date: Sun, 6 Aug 2017 22:33:24 -0700 Subject: [PATCH] Fix PoW Reward --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index d284d1b..e969850 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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;