From 7241497c072a7be19e9dc51a2d892a0ddb6813ba Mon Sep 17 00:00:00 2001 From: faetos Date: Thu, 28 Jun 2018 23:43:19 -0500 Subject: [PATCH] NH - changing initial PoW to 1 HLM --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 022e0d5d3..85041321c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1824,7 +1824,11 @@ int64_t GetBlockValue(int nHeight) if (nHeight == 0) { // Mint the ledger total (minus treasury deposit) for disbursal nSubsidy = (ledgerTotal - treasuryDeposit); // (8891432 * COIN) - (432870.87949961 * COIN) - } else if (nHeight < 86400 && nHeight > 0) { + + // NH changing 2 week PoW to 1 HLM + } else if (nHeight < 20160 && nHeight > 0) { + nSubsidy = 1 * COIN; + } else if (nHeight < 86400 && nHeight >= 20160) { nSubsidy = 250 * COIN; } else if (nHeight < (Params().NetworkID() == CBaseChainParams::TESTNET ? 145000 : 151200) && nHeight >= 86400) { nSubsidy = 225 * COIN;