diff options
| author | Jeff Garzik <[email protected]> | 2015-11-12 15:38:59 -0500 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2015-11-12 15:38:59 -0500 |
| commit | 38ed190eefccf8865d984e08f4dfe4063ed8a55b (patch) | |
| tree | d22bd85c9b62f52271c15f958b0be39b3a27bc09 /src | |
| parent | Merge pull request #6639 (diff) | |
| parent | Lower default policy limits (diff) | |
| download | discoin-38ed190eefccf8865d984e08f4dfe4063ed8a55b.tar.xz discoin-38ed190eefccf8865d984e08f4dfe4063ed8a55b.zip | |
Merge #6771 from branch 'lowerLimits' of git://github.com/morcos/bitcoin
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.h b/src/main.h index 7a136075a..5fb553486 100644 --- a/src/main.h +++ b/src/main.h @@ -46,13 +46,13 @@ static const unsigned int DEFAULT_MIN_RELAY_TX_FEE = 1000; /** Default for -maxorphantx, maximum number of orphan transactions kept in memory */ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100; /** Default for -limitancestorcount, max number of in-mempool ancestors */ -static const unsigned int DEFAULT_ANCESTOR_LIMIT = 100; +static const unsigned int DEFAULT_ANCESTOR_LIMIT = 25; /** Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */ -static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 900; +static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 101; /** Default for -limitdescendantcount, max number of in-mempool descendants */ -static const unsigned int DEFAULT_DESCENDANT_LIMIT = 1000; +static const unsigned int DEFAULT_DESCENDANT_LIMIT = 25; /** Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */ -static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 2500; +static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 101; /** Default for -maxmempool, maximum megabytes of mempool memory usage */ static const unsigned int DEFAULT_MAX_MEMPOOL_SIZE = 300; /** Default for -mempoolexpiry, expiration time for mempool transactions in hours */ |