mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
validation: don't clear cache on periodic flush
This commit is contained in:
parent
c8e3978114
commit
4a6d1d1e3b
1 changed files with 3 additions and 1 deletions
|
@ -2745,8 +2745,10 @@ bool Chainstate::FlushStateToDisk(
|
||||||
return FatalError(m_chainman.GetNotifications(), state, _("Disk space is too low!"));
|
return FatalError(m_chainman.GetNotifications(), state, _("Disk space is too low!"));
|
||||||
}
|
}
|
||||||
// Flush the chainstate (which may refer to block index entries).
|
// Flush the chainstate (which may refer to block index entries).
|
||||||
if (!CoinsTip().Flush())
|
const auto empty_cache{(mode == FlushStateMode::ALWAYS) || fCacheLarge || fCacheCritical || fFlushForPrune};
|
||||||
|
if (empty_cache ? !CoinsTip().Flush() : !CoinsTip().Sync()) {
|
||||||
return FatalError(m_chainman.GetNotifications(), state, _("Failed to write to coin database."));
|
return FatalError(m_chainman.GetNotifications(), state, _("Failed to write to coin database."));
|
||||||
|
}
|
||||||
m_last_flush = nNow;
|
m_last_flush = nNow;
|
||||||
full_flush_completed = true;
|
full_flush_completed = true;
|
||||||
TRACE5(utxocache, flush,
|
TRACE5(utxocache, flush,
|
||||||
|
|
Loading…
Add table
Reference in a new issue