From 21b3e94d67c9b2a6c7e4fc13269f5659efdb6735 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Mon, 12 Aug 2024 23:06:54 +0300 Subject: [PATCH] chore: update help text, mention that spork state/updates are irrelevant on mainnet --- src/rpc/misc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index a65a72301749f0..ca714a31a4cd6f 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -149,7 +149,7 @@ static RPCHelpMan spork() { // default help, for basic mode return RPCHelpMan{"spork", - "\nShows information about current state of sporks\n", + "\nShows information about current state of sporks for non-mainnet networks. Mainnet values are hardcoded.\n", { {"command", RPCArg::Type::STR, /* default*/ "\"show\"", "DEPRECATED. 'show' to show all current spork values"}, }, @@ -182,7 +182,7 @@ static RPCHelpMan spork() static RPCHelpMan sporkupdate() { return RPCHelpMan{"sporkupdate", - "\nUpdate the value of the specific spork. Requires \"-sporkkey\" to be set to sign the message.\n", + "\nUpdate the value of the specific spork on non-mainnet networks. Requires \"-sporkkey\" to be set to sign the message.\n", { {"name", RPCArg::Type::STR, RPCArg::Optional::NO, "The name of the spork to update"}, {"value", RPCArg::Type::NUM, RPCArg::Optional::NO, "The new desired value of the spork"},