aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-11-10 22:07:17 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2012-11-10 22:08:46 +0100
commit45a9365f18bed8c95e37300a572adef1e27361d5 (patch)
tree498a939cc652f9c047381cb662dbfda329f16957 /src/qt
parent91cee34638ae4d5cacb5fadf0adf16428ecf1332 (diff)
downloadbitcoin-45a9365f18bed8c95e37300a572adef1e27361d5.tar.xz
Fix status text after reindex
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/bitcoingui.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index 9c47daf85d..0198a92c05 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -505,8 +505,10 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks)
case BLOCK_SOURCE_NONE:
case BLOCK_SOURCE_NETWORK:
importText = tr("Synchronizing with network...");
+ break;
case BLOCK_SOURCE_DISK:
importText = tr("Importing blocks from disk...");
+ break;
case BLOCK_SOURCE_REINDEX:
importText = tr("Reindexing blocks on disk...");
}