diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -193,7 +193,7 @@ const JSONRPCRequest &request) { RPCHelpMan{ "getblockcount", - "\nReturns the height of the most-work fully-validated chain.\n" + "Returns the height of the most-work fully-validated chain.\n" "The genesis block has height 0.\n", {}, RPCResult{RPCResult::Type::NUM, "", "The current block count"}, @@ -2840,7 +2840,7 @@ const JSONRPCRequest &request) { RPCHelpMan{ "dumptxoutset", - "\nWrite the serialized UTXO set to disk.\n", + "Write the serialized UTXO set to disk.\n", { {"path", RPCArg::Type::STR, RPCArg::Optional::NO, /* default_val */ "", diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -240,7 +240,7 @@ const JSONRPCRequest &request) { RPCHelpMan{ "generatetodescriptor", - "\nMine blocks immediately to a specified descriptor (before the RPC " + "Mine blocks immediately to a specified descriptor (before the RPC " "call returns)\n", { {"num_blocks", RPCArg::Type::NUM, RPCArg::Optional::NO, @@ -348,7 +348,7 @@ const JSONRPCRequest &request) { RPCHelpMan{ "generateblock", - "\nMine a block with a set of ordered transactions immediately to a " + "Mine a block with a set of ordered transactions immediately to a " "specified address or descriptor (before the RPC call returns)\n", { {"output", RPCArg::Type::STR, RPCArg::Optional::NO, diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -841,7 +841,7 @@ static RPCHelpMan getindexinfo() { return RPCHelpMan{ "getindexinfo", - "\nReturns the status of one or all available indices currently " + "Returns the status of one or all available indices currently " "running in the node.\n", { {"index_name", RPCArg::Type::STR, diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -986,7 +986,7 @@ const JSONRPCRequest &request) { RPCHelpMan{ "addpeeraddress", - "\nAdd the address of a potential peer to the address manager. This " + "Add the address of a potential peer to the address manager. This " "RPC is for testing only.\n", { {"address", RPCArg::Type::STR, RPCArg::Optional::NO, diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -1592,7 +1592,7 @@ UniValue importmulti(const Config &config, const JSONRPCRequest &mainRequest) { RPCHelpMan{ "importmulti", - "\nImport addresses/scripts (with private or public keys, redeem " + "Import addresses/scripts (with private or public keys, redeem " "script (P2SH)), optionally rescanning the blockchain from the " "earliest creation time of the imported scripts. Requires a new wallet " "backup.\n" @@ -2079,7 +2079,7 @@ const JSONRPCRequest &main_request) { RPCHelpMan{ "importdescriptors", - "\nImport descriptors. This will trigger a rescan of the blockchain " + "Import descriptors. This will trigger a rescan of the blockchain " "based on the earliest timestamp of all descriptors being imported. " "Requires a new wallet backup.\n" "\nNote: This call can take over an hour to complete if using an early " diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4230,7 +4230,7 @@ UniValue getaddressinfo(const Config &config, const JSONRPCRequest &request) { RPCHelpMan{ "getaddressinfo", - "\nReturn information about the given bitcoin address.\n" + "Return information about the given bitcoin address.\n" "Some of the information will only be present if the address is in the " "active wallet.\n", { @@ -4891,7 +4891,7 @@ static UniValue upgradewallet(const Config &config, const JSONRPCRequest &request) { RPCHelpMan{"upgradewallet", - "\nUpgrade the wallet. Upgrades to the latest version if no " + "Upgrade the wallet. Upgrades to the latest version if no " "version number is specified\n" "New keys may be generated and a new wallet backup will need to " "be made.",