mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-02-19 11:48:51 +00:00
revert change, much confuse. transaction cap at 500M. may change in future
This commit is contained in:
parent
ec29ea3a16
commit
3b002248ec
@ -33,7 +33,7 @@ static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
|
||||
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
|
||||
static const int64 MIN_TX_FEE = 10000;
|
||||
static const int64 MIN_RELAY_TX_FEE = MIN_TX_FEE;
|
||||
static const int64 MAX_MONEY = 10000000000 * COIN; // DogeCoin: maximum of 100B coins (given some randomness)
|
||||
static const int64 MAX_MONEY = 500000000 * COIN; // DogeCoin: maximum of 100B coins (given some randomness), max transaction 500,000,000 for now
|
||||
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
|
||||
static const int COINBASE_MATURITY = 30;
|
||||
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user