Skip to content

Commit

Permalink
NH - changing initial PoW to 1 HLM
Browse files Browse the repository at this point in the history
  • Loading branch information
faetos committed Jun 29, 2018
1 parent b5b87a7 commit 7241497
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 7241497

Please sign in to comment.