From 0b8b8f16c6213fc0c7b8ff481dba1a1bfc16202d Mon Sep 17 00:00:00 2001 From: Sky Young Date: Tue, 29 Jan 2019 10:10:35 -0700 Subject: [PATCH] Increase Maximum utxo chain to 1250 --- src/validation.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/validation.h b/src/validation.h index ac7067e96..28d386163 100755 --- a/src/validation.h +++ b/src/validation.h @@ -59,13 +59,13 @@ static const CAmount HIGH_TX_FEE_PER_KB = 0.01 * COIN; //! -maxtxfee will warn if called with a higher fee than this amount (in satoshis) static const CAmount HIGH_MAX_TX_FEE = 100 * HIGH_TX_FEE_PER_KB; /** Default for -limitancestorcount, max number of in-mempool ancestors */ -static const unsigned int DEFAULT_ANCESTOR_LIMIT = 25; +static const unsigned int DEFAULT_ANCESTOR_LIMIT = 1250; /** Default for -limitancestorsize, maximum kilobytes of tx + all in-mempool ancestors */ -static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 101; +static const unsigned int DEFAULT_ANCESTOR_SIZE_LIMIT = 5050; /** Default for -limitdescendantcount, max number of in-mempool descendants */ -static const unsigned int DEFAULT_DESCENDANT_LIMIT = 25; +static const unsigned int DEFAULT_DESCENDANT_LIMIT = 1250; /** Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */ -static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 101; +static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 5050; /** Default for -mempoolexpiry, expiration time for mempool transactions in hours */ static const unsigned int DEFAULT_MEMPOOL_EXPIRY = 336; /** Maximum kilobytes for transactions to store for processing during reorg */