We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b0004 commit ec84f99Copy full SHA for ec84f99
src/validation.cpp
@@ -5701,8 +5701,8 @@ void ChainstateManager::MaybeRebalanceCaches()
5701
assert(ibd_usable || snapshot_usable);
5702
5703
if (ibd_usable && !snapshot_usable) {
5704
- LogPrintf("[snapshot] allocating all cache to the IBD chainstate\n");
5705
- // Allocate everything to the IBD chainstate.
+ // Allocate everything to the IBD chainstate. This will always happen
+ // when we are not using a snapshot.
5706
m_ibd_chainstate->ResizeCoinsCaches(m_total_coinstip_cache, m_total_coinsdb_cache);
5707
}
5708
else if (snapshot_usable && !ibd_usable) {
0 commit comments