Changed hard fork date to Aug 30

This commit is contained in:
Evan Duffield 2015-07-28 01:28:08 -07:00
parent b6222a9ae9
commit 781db99ee9

View File

@ -1559,10 +1559,10 @@ int64_t GetBlockValue(int nBits, int nHeight, const CAmount& nFees)
/*
Hard fork will activate on block 320436, reducing the block reward by 10 extra percent (allowing budget super-blocks)
Hard fork will activate on block 328008, reducing the block reward by 10 extra percent (allowing budget super-blocks)
*/
if(nHeight > 308340+(576*21)) nSubsidy -= nSubsidy/10; // 320436 - 10.0% - August 24, 2015
if(nHeight > 309759+(553*33)) nSubsidy -= nSubsidy/10; // 328008 - 10.0% - August 30, 2015
return nSubsidy + nFees;
}