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)) {