From bfb634f2238c01c7fa782b6c5b79f5e6f207ded3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 17 Apr 2017 17:24:00 +0300 Subject: [PATCH] Increment number of note witness cache --- src/wallet/wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index ccba41065..d52f547d0 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -59,7 +59,7 @@ static const unsigned int MAX_FREE_TRANSACTION_CREATE_SIZE = 1000; // Should be large enough that we can expect not to reorg beyond our cache // unless there is some exceptional network disruption. #define _COINBASE_MATURITY 100 -static const unsigned int WITNESS_CACHE_SIZE = _COINBASE_MATURITY+1; +static const unsigned int WITNESS_CACHE_SIZE = _COINBASE_MATURITY+2; class CAccountingEntry; class CBlockIndex;