diff options
-rw-r--r-- | src/txdb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txdb.cpp b/src/txdb.cpp index c62f51cfce..002f6550bc 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -417,6 +417,6 @@ bool CCoinsViewDB::Upgrade() { } db.WriteBatch(batch); uiInterface.SetProgressBreakAction(std::function<void(void)>()); - LogPrintf("[DONE].\n"); + LogPrintf("[%s].\n", ShutdownRequested() ? "CANCELLED" : "DONE"); return true; } |