From abded19df7b377dee7bf8c0dfc086001352299b6 Mon Sep 17 00:00:00 2001 From: EverGreenCoin Date: Thu, 26 Oct 2017 23:15:18 -0400 Subject: [PATCH] this is bugging me :P --- src/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 08b02dc..19f3e8c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1021,14 +1021,10 @@ int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash) } else if (nHeight < 4835520){ nSubsidy = 0.000003 * COIN; - } - else if (nHeight < 5045760){ - nSubsidy = 0.000001 * COIN; } else { nSubsidy = 0.000001 * COIN; } - return nSubsidy + nFees; }