From 5a40e7d144936ccd4ff64be87e49bcd22b3846e3 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Thu, 16 Aug 2018 10:52:25 -0400 Subject: [PATCH] mainchainrpc* description fixes --- src/init.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 983d96c25c..3b8a8c48ca 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -520,12 +520,12 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-parentscriptprefix", strprintf(_("The byte prefix, in decimal, of the parent chain's base58 script address. (default: %d)"), 196)); } - strUsage += HelpMessageOpt("-validatepegin", strprintf(_("Validate pegin claims. All functionaries must run this. (default: %u)"), DEFAULT_VALIDATE_PEGIN)); - strUsage += HelpMessageOpt("-mainchainrpchost=", strprintf("The address which the daemon will try to connect to validate peg-ins, if enabled. (default: cookie auth)")); - strUsage += HelpMessageOpt("-mainchainrpcport=", strprintf("The port which the daemon will try to connect to validate peg-ins, if enabled. (default: cookie auth)")); - strUsage += HelpMessageOpt("-mainchainrpcuser=", strprintf("The rpc username that the daemon will use to connect to validate peg-ins, if enabled. (default: cookie auth)")); - strUsage += HelpMessageOpt("-mainchainrpcpassword=", strprintf("The rpc password which the daemon will use to connect to validate peg-ins, if enabled. (default: cookie auth)")); - strUsage += HelpMessageOpt("-mainchainrpccookiefile=", strprintf("The bitcoind cookie auth path which the daemon will use to connect to validate peg-ins, if enabled. (default: default bitcoind datadir)")); + strUsage += HelpMessageOpt("-validatepegin", strprintf(_("Validate peg-in claims. An RPC connection will be attempted to the trusted bitcoind using the `mainchain*` settings below. All functionaries must run this enabled. (default: %u)"), DEFAULT_VALIDATE_PEGIN)); + strUsage += HelpMessageOpt("-mainchainrpchost=", strprintf("The address which the daemon will try to connect to the trusted bitcoind to validate peg-ins, if enabled. (default: cookie auth)")); + strUsage += HelpMessageOpt("-mainchainrpcport=", strprintf("The port which the daemon will try to connect to the trusted bitcoind to validate peg-ins, if enabled. (default: cookie auth)")); + strUsage += HelpMessageOpt("-mainchainrpcuser=", strprintf("The rpc username that the daemon will use to connect to the trusted bitcoind to validate peg-ins, if enabled. (default: cookie auth)")); + strUsage += HelpMessageOpt("-mainchainrpcpassword=", strprintf("The rpc password which the daemon will use to connect to the trusted bitcoind to validate peg-ins, if enabled. (default: cookie auth)")); + strUsage += HelpMessageOpt("-mainchainrpccookiefile=", strprintf("The bitcoind cookie auth path which the daemon will use to connect to the trusted bitcoind to validate peg-ins. (default: `/regtest/.cookie`)")); return strUsage;