diff options
| author | Pieter Wuille <[email protected]> | 2017-04-19 09:34:48 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-06-26 10:45:48 -0700 |
| commit | 0580ee08ff413f729bd34e5a5ce0fb75894f0256 (patch) | |
| tree | 1aa759b02f0d8210a079a06b9535a3120f1f5238 /src/validation.cpp | |
| parent | Non-atomic flushing using the blockchain as replay journal (diff) | |
| download | discoin-0580ee08ff413f729bd34e5a5ce0fb75894f0256.tar.xz discoin-0580ee08ff413f729bd34e5a5ce0fb75894f0256.zip | |
Adapt memory usage estimation for flushing
Diffstat (limited to 'src/validation.cpp')
| -rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index f5e31e0a0..77b96be1e 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -1781,7 +1781,7 @@ bool static FlushStateToDisk(const CChainParams& chainparams, CValidationState & nLastSetChain = nNow; } int64_t nMempoolSizeMax = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000; - int64_t cacheSize = pcoinsTip->DynamicMemoryUsage() * DB_PEAK_USAGE_FACTOR; + int64_t cacheSize = pcoinsTip->DynamicMemoryUsage(); int64_t nTotalSpace = nCoinCacheUsage + std::max<int64_t>(nMempoolSizeMax - nMempoolUsage, 0); // The cache is large and we're within 10% and 10 MiB of the limit, but we have time now (not in the middle of a block processing). bool fCacheLarge = mode == FLUSH_STATE_PERIODIC && cacheSize > std::max((9 * nTotalSpace) / 10, nTotalSpace - MAX_BLOCK_COINSDB_USAGE * 1024 * 1024); |