From a03edf6d2296f983d7585f69ffa2405ac89db86b Mon Sep 17 00:00:00 2001 From: Mrs-X Date: Thu, 28 Dec 2017 22:39:30 +0100 Subject: [PATCH] [Core] (testnet-) blockchain stuck at block 325000 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2628066d51cb..5c8dd9186d7b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2254,7 +2254,7 @@ int64_t GetMasternodePayment(int nHeight, int64_t blockValue, int nMasternodeCou if (mNodeCoins == 0) { ret = 0; - } else if (nHeight < 325000) { + } else if (nHeight <= 325000) { if (mNodeCoins <= (nMoneySupply * .05) && mNodeCoins > 0) { ret = blockValue * .85; } else if (mNodeCoins <= (nMoneySupply * .1) && mNodeCoins > (nMoneySupply * .05)) {