removed halving completely

This commit is contained in:
Evan 2014-02-26 08:09:25 -07:00
parent 970f9d202a
commit 819ccd71ca

View File

@ -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;
}