From 5489e602ff40292c2716d960f487447968faac19 Mon Sep 17 00:00:00 2001 From: Philippe McLean Date: Wed, 4 Dec 2019 18:20:12 -0800 Subject: [PATCH] Trivial: fix typo in error message when mainchain daemon is unavailable --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 2980679a47..46b28ef83d 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1884,7 +1884,7 @@ bool AppInitMain(InitInterfaces& interfaces) // ELEMENTS: uiInterface.InitMessage(_("Awaiting mainchain RPC warmup")); if (!MainchainRPCCheck(true)) { //Initial check only - const std::string err_msg = "ERROR: elements is set to verify pegins but cannot get valid response from the mainchain daemon. Please check debug.log for more information.\n\nIf you haven't setup a bitcoind please get the latest stable version from https://bitcoincore.org/en/download/ or if you do not need to validate pegins set in your elements configuration validatepegin=0"; + const std::string err_msg = "ERROR: elements is set to verify pegins but cannot get a valid response from the mainchain daemon. Please check debug.log for more information.\n\nIf you haven't setup a bitcoind please get the latest stable version from https://bitcoincore.org/en/download/ or if you do not need to validate pegins set in your elements configuration validatepegin=0"; // We fail immediately if this node has RPC server enabled if (gArgs.GetBoolArg("-server", false)) { InitError(err_msg);