From 1e32b67466d5031dc8524433605ee99962b9d0a5 Mon Sep 17 00:00:00 2001 From: cygnusxi Date: Fri, 11 May 2018 00:15:39 -0500 Subject: [PATCH] Update main.h --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.h b/src/main.h index 5c5e743..c796b0b 100644 --- a/src/main.h +++ b/src/main.h @@ -36,7 +36,7 @@ static const int64 MAX_MINT_PROOF_OF_WORK = 13 * COIN; //Lucky number 13 Coins p static const int64 MAX_MINT_PROOF_OF_STAKE = 0.01 * MAX_MINT_PROOF_OF_WORK; //1% annual interest reward the folders and holders static const int64 MIN_TXOUT_AMOUNT = MIN_TX_FEE; static const unsigned int MAX_TX_COMMENT_LEN = 268; // curecoin: 256 bytes + 12 little extra -static const unsigned int HF_BLOCK = 12961; // testing hotwire 220000; // hardfork's block height +static const unsigned int HF_BLOCK = 300000; // testing hotwire 220000; // hardfork's block height inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } // Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.