Browse Source

Fix status text after reindex

0.8
Pieter Wuille 12 years ago
parent
commit
45a9365f18
  1. 2
      src/qt/bitcoingui.cpp

2
src/qt/bitcoingui.cpp

@ -505,8 +505,10 @@ void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks)
case BLOCK_SOURCE_NONE: case BLOCK_SOURCE_NONE:
case BLOCK_SOURCE_NETWORK: case BLOCK_SOURCE_NETWORK:
importText = tr("Synchronizing with network..."); importText = tr("Synchronizing with network...");
break;
case BLOCK_SOURCE_DISK: case BLOCK_SOURCE_DISK:
importText = tr("Importing blocks from disk..."); importText = tr("Importing blocks from disk...");
break;
case BLOCK_SOURCE_REINDEX: case BLOCK_SOURCE_REINDEX:
importText = tr("Reindexing blocks on disk..."); importText = tr("Reindexing blocks on disk...");
} }

Loading…
Cancel
Save