mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Trivial: fix typo in error message when mainchain daemon is unavailable
This commit is contained in:
parent
526e802d69
commit
5489e602ff
1 changed files with 1 additions and 1 deletions
|
|
@ -1884,7 +1884,7 @@ bool AppInitMain(InitInterfaces& interfaces)
|
||||||
// ELEMENTS:
|
// ELEMENTS:
|
||||||
uiInterface.InitMessage(_("Awaiting mainchain RPC warmup"));
|
uiInterface.InitMessage(_("Awaiting mainchain RPC warmup"));
|
||||||
if (!MainchainRPCCheck(true)) { //Initial check only
|
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
|
// We fail immediately if this node has RPC server enabled
|
||||||
if (gArgs.GetBoolArg("-server", false)) {
|
if (gArgs.GetBoolArg("-server", false)) {
|
||||||
InitError(err_msg);
|
InitError(err_msg);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue