From c374d23f376de6d03936c7f82b7dd933d2c337c1 Mon Sep 17 00:00:00 2001 From: qwerty55 Date: Thu, 17 Jul 2014 03:35:50 -0400 Subject: [PATCH] block height for subsidy reduction changed from 620000 to 577000 to allow for cut in 10 days --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index eedd055..147cc78 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1108,8 +1108,8 @@ int64 static GetBlockValue(int nHeight, int64 nFees) nSubsidy = 45 * COIN; } - // Permantently reduce the number of mined coins to 10 after block 620000 - if(nHeight > 620000){ + // Permantently reduce the number of mined coins to 10 after block 575000 + if(nHeight > 575000){ if(nHeight < 3756000){ nSubsidy = 10 * COIN; }