diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-06-28 10:11:55 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-06-28 10:12:01 +0200 |
| commit | ff03c50c004844fff71b940c7ac67123a0c5934c (patch) | |
| tree | 9316e68f2cd0bbefa511d3198212a3b5709c4a5b /src/init.cpp | |
| parent | Merge #8258: RPC: Hide softfork if timeout is 0 (diff) | |
| parent | Do not ask a UI question from bitcoind (diff) | |
| download | discoin-ff03c50c004844fff71b940c7ac67123a0c5934c.tar.xz discoin-ff03c50c004844fff71b940c7ac67123a0c5934c.zip | |
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.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 5d29f14eb..ea4ccaddf 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; |