[rpc] Remove deprecated functionality message from validateaddress help
This functionality was removed in v0.18.
This commit is contained in:
parent
839c3f7c49
commit
7b6616b78b
1 changed files with 1 additions and 5 deletions
|
@ -34,11 +34,7 @@ static UniValue validateaddress(const JSONRPCRequest& request)
|
||||||
if (request.fHelp || request.params.size() != 1)
|
if (request.fHelp || request.params.size() != 1)
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
RPCHelpMan{"validateaddress",
|
RPCHelpMan{"validateaddress",
|
||||||
"\nReturn information about the given bitcoin address.\n"
|
"\nReturn information about the given bitcoin address.\n",
|
||||||
"DEPRECATION WARNING: Parts of this command have been deprecated and moved to getaddressinfo. Clients must\n"
|
|
||||||
"transition to using getaddressinfo to access this information before upgrading to v0.18. The following deprecated\n"
|
|
||||||
"fields have moved to getaddressinfo and will only be shown here with -deprecatedrpc=validateaddress: ismine, iswatchonly,\n"
|
|
||||||
"script, hex, pubkeys, sigsrequired, pubkey, addresses, embedded, iscompressed, account, timestamp, hdkeypath, kdmasterkeyid.\n",
|
|
||||||
{
|
{
|
||||||
{"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to validate"},
|
{"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to validate"},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue