aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2017-08-24 17:31:00 -0400
committerMarcoFalke <falke.marco@gmail.com>2017-08-24 17:31:05 -0400
commit77fc469fc78cdd87c29f398d46ac58dbb9ef62c0 (patch)
tree3ce0319870e83f38818e0e72063c311ee9a03d59 /src/init.cpp
parent4ae6d0fbef60ccbecf8f23bb482e201b3678f7a3 (diff)
parentcd0ea487422028bec1f5df62ab4c57909c2bcc90 (diff)
downloadbitcoin-77fc469fc78cdd87c29f398d46ac58dbb9ef62c0.tar.xz
Merge #11108: Changing -txindex requires -reindex, not -reindex-chainstate
cd0ea4874 Changing -txindex requires -reindex, not -reindex-chainstate (Matt Corallo) Pull request description: If there's an 0.15.0rc3, this should go in it. Tree-SHA512: 857e77f0af9c055a3d1d91f37474ee9e06d6bc8c5ed21b29201b6c386801e7041523949076cdf0daa4d357a5175ce49394d85a1bedfbf13f3e577bdb6da1d6ce
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 3f68ea1021..e145c63ee5 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;
}