mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
fix possible shutdown assertion with -reindex-shutdown
Credit @eklitzke for reproducing.
This commit is contained in:
parent
c997f88082
commit
ceaefdd5f3
@ -2087,7 +2087,7 @@ bool static FlushStateToDisk(const CChainParams& chainparams, CValidationState &
|
||||
nLastWrite = nNow;
|
||||
}
|
||||
// Flush best chain related state. This can only be done if the blocks / block index write was also done.
|
||||
if (fDoFullFlush) {
|
||||
if (fDoFullFlush && !pcoinsTip->GetBestBlock().IsNull()) {
|
||||
// Typical Coin structures on disk are around 48 bytes in size.
|
||||
// Pushing a new one to the database can cause it to be written
|
||||
// twice (once in the log, and once in the tables). This is already
|
||||
|
Loading…
Reference in New Issue
Block a user