From f078bb2158f1cdb04dc62328103b687bc4cfe68a Mon Sep 17 00:00:00 2001 From: crowning- Date: Sat, 13 Dec 2014 16:15:28 +0100 Subject: [PATCH] Missleading progress-bar message When sync is stuck I notice more and more user asking if "No block source available..." is the reason for this and whether their network setup is broken. The changed message should make clear that there is no LOCAL source available and that the wallet is still trying to synchronize via network. --- src/qt/bitcoingui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 41779910a2a8..f03995b8e500 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -644,7 +644,7 @@ void BitcoinGUI::setNumBlocks(int count) break; case BLOCK_SOURCE_NONE: // Case: not Importing, not Reindexing and no network connection - progressBarLabel->setText(tr("No block source available...")); + progressBarLabel->setText(tr("No local block source available, synchronizing with network...")); break; }