From 819ccd71cab84c3728d457b16d2679486f917394 Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 26 Feb 2014 08:09:25 -0700 Subject: [PATCH] removed halving completely --- src/main.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index abad2a9132..82c721b8a2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1104,9 +1104,6 @@ int64 static GetBlockValue(int nBits, int nHeight, int64 nFees) //printf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy); nSubsidy *= COIN; - // Subsidy is cut in half every 210240 blocks, which will occur approximately every year - nSubsidy >>= (nHeight / 210240); // DarkCoin: 210k blocks in 1 year - return nSubsidy + nFees; }