From 970f9d202aeb90c5d9168736a07c05ed0e2fc448 Mon Sep 17 00:00:00 2001 From: Evan Date: Mon, 24 Feb 2014 16:22:45 -0700 Subject: [PATCH] locked in GPU block reward calc --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e39fd1bad5..abad2a9132 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1085,7 +1085,7 @@ int64 static GetBlockValue(int nBits, int nHeight, int64 nFees) int64 nSubsidy = 0; if(nHeight >= 5465) { - if(nHeight >= 17000 && dDiff > 75) { // GPU/ASIC difficulty calc + if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc // 2222222/(((x+2600)/9)^2) nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0))); if (nSubsidy > 25) nSubsidy = 25;