diff options
| author | Pieter Wuille <[email protected]> | 2012-11-10 22:07:17 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-11-10 22:08:46 +0100 |
| commit | 45a9365f18bed8c95e37300a572adef1e27361d5 (patch) | |
| tree | 498a939cc652f9c047381cb662dbfda329f16957 | |
| parent | Merge pull request #1992 from Diapolo/no_memset (diff) | |
| download | discoin-45a9365f18bed8c95e37300a572adef1e27361d5.tar.xz discoin-45a9365f18bed8c95e37300a572adef1e27361d5.zip | |
Fix status text after reindex
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 9c47daf85..0198a92c0 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..."); } |