From cd0ea487422028bec1f5df62ab4c57909c2bcc90 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 22 Aug 2017 13:32:17 -0400 Subject: [PATCH] Changing -txindex requires -reindex, not -reindex-chainstate --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 55a58cc7b..ae25c341f 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; }