mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
log: Don't log cache rebalancing in absense of a snapshot chainstate
This commit is contained in:
parent
e7b0004b37
commit
ec84f999f1
1 changed files with 2 additions and 2 deletions
|
@ -5701,8 +5701,8 @@ void ChainstateManager::MaybeRebalanceCaches()
|
|||
assert(ibd_usable || snapshot_usable);
|
||||
|
||||
if (ibd_usable && !snapshot_usable) {
|
||||
LogPrintf("[snapshot] allocating all cache to the IBD chainstate\n");
|
||||
// Allocate everything to the IBD chainstate.
|
||||
// Allocate everything to the IBD chainstate. This will always happen
|
||||
// when we are not using a snapshot.
|
||||
m_ibd_chainstate->ResizeCoinsCaches(m_total_coinstip_cache, m_total_coinsdb_cache);
|
||||
}
|
||||
else if (snapshot_usable && !ibd_usable) {
|
||||
|
|
Loading…
Add table
Reference in a new issue