validation: don't erase coins cache on prune flushes

This commit is contained in:
Andrew Toth 2024-07-17 23:20:32 -04:00
parent 0e8918755f
commit 589db872e1
No known key found for this signature in database
GPG key ID: 60007AFC8938B018

View file

@ -2902,7 +2902,7 @@ bool Chainstate::FlushStateToDisk(
return FatalError(m_chainman.GetNotifications(), state, _("Disk space is too low!"));
}
// Flush the chainstate (which may refer to block index entries).
const auto empty_cache{(mode == FlushStateMode::ALWAYS) || fCacheLarge || fCacheCritical || fFlushForPrune};
const auto empty_cache{(mode == FlushStateMode::ALWAYS) || fCacheLarge || fCacheCritical};
if (empty_cache ? !CoinsTip().Flush() : !CoinsTip().Sync()) {
return FatalError(m_chainman.GetNotifications(), state, _("Failed to write to coin database."));
}