From 781db99ee9829e835830c011bcdbbc157bfa6834 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Tue, 28 Jul 2015 01:28:08 -0700 Subject: [PATCH] Changed hard fork date to Aug 30 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 2c73fd4c2..f391eb5d3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; }