diff --git a/src/main.h b/src/main.h index 7a41373..d16fa22 100644 --- a/src/main.h +++ b/src/main.h @@ -52,10 +52,10 @@ static const int64 DUST_SOFT_LIMIT = 100000; // 0.001 CLN /** Dust Hard Limit, ignored as wallet inputs (mininput default) */ static const int64 DUST_HARD_LIMIT = 1000; // 0.00001 CLN mininput /** No amount larger than this (in satoshi) is valid */ -static const int64 MAX_MONEY = 84000000 * COIN; +static const int64 MAX_MONEY = 184000000 * COIN; inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } /** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */ -static const int COINBASE_MATURITY = 100; +static const int COINBASE_MATURITY = 20; /** Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp. */ static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20 1985 UTC /** Maximum number of script-checking threads allowed */