Skip to content

Commit 2507fd5

Browse files
committed
Merge #10998: Fix upgrade cancel warnings
861f9a2 Skip remainder of init if upgrade is cancelled (Matt Corallo) Pull request description: Based on #10919. Without this, if you cancel upgrade, you get a needless error: ERROR: VerifyDB(): *** irrecoverable inconsistency in block data at Tree-SHA512: aa47665682c6605ada376f1c100ce17cf8c4312427929eb2e75306f2199b47cbcdb4e0d98d5efcfefff03947b2c0fcbd3aab487a4ed14d50607df685c91a03d0
2 parents 4268426 + 861f9a2 commit 2507fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/txdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,5 +422,5 @@ bool CCoinsViewDB::Upgrade() {
422422
db.CompactRange({DB_COINS, uint256()}, key);
423423
uiInterface.SetProgressBreakAction(std::function<void(void)>());
424424
LogPrintf("[%s].\n", ShutdownRequested() ? "CANCELLED" : "DONE");
425-
return true;
425+
return !ShutdownRequested();
426426
}

0 commit comments

Comments
 (0)