aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2017-08-22 13:32:17 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2017-08-28 10:18:58 +0200
commite8ad101e5b104ca913beb82a77f5b3bfa1a7c5f6 (patch)
tree2647f0c48a7d6703c8c2bc90f57ff6bc4cec0dde /src
parent5b059a833eb57a4dd8458f42aedba85265b2bbf3 (diff)
downloadbitcoin-e8ad101e5b104ca913beb82a77f5b3bfa1a7c5f6.tar.xz
Changing -txindex requires -reindex, not -reindex-chainstate
Github-Pull: #11108 Rebased-From: cd0ea487422028bec1f5df62ab4c57909c2bcc90 Tree-SHA512: 0fbd50b1343eec14301ee9c2fc76e48dcb1610ce1ddbf3cccbd937e2c0d1bbdfc4920fbc05e7e560c424e0ed7367d6ad3595a1bd38dea669bcbd1c838f522d8e
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index d79c2967b9..a708295f43 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -1428,7 +1428,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
// Check for changed -txindex state
if (fTxIndex != gArgs.GetBoolArg("-txindex", DEFAULT_TXINDEX)) {
- strLoadError = _("You need to rebuild the database using -reindex-chainstate to change -txindex");
+ strLoadError = _("You need to rebuild the database using -reindex to change -txindex");
break;
}