aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-06-28 10:11:55 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-06-28 10:12:01 +0200
commitff03c50c004844fff71b940c7ac67123a0c5934c (patch)
tree9316e68f2cd0bbefa511d3198212a3b5709c4a5b /src/init.cpp
parent5a06ebbf2d5f6ff57966c9ea9956cc1b666b3028 (diff)
parent1acf1db76fc3e07deb8f0f837934ea90383fedb5 (diff)
downloadbitcoin-ff03c50c004844fff71b940c7ac67123a0c5934c.tar.xz
Merge #8257: Do not ask a UI question from bitcoind
1acf1db Do not ask a UI question from bitcoind (Pieter Wuille)
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 5d29f14eb8..ea4ccaddfc 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -1326,8 +1326,9 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
if (!fLoaded) {
// first suggest a reindex
if (!fReset) {
- bool fRet = uiInterface.ThreadSafeMessageBox(
+ bool fRet = uiInterface.ThreadSafeQuestion(
strLoadError + ".\n\n" + _("Do you want to rebuild the block database now?"),
+ strLoadError + ".\nPlease restart with -reindex or -reindex-chainstate to recover.",
"", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT);
if (fRet) {
fReindex = true;