diff options
author | John Newbery <john@johnnewbery.com> | 2019-03-22 10:29:43 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2019-03-22 10:30:25 -0400 |
commit | 7b6616b78bd9f76502002db1a209a0363979e506 (patch) | |
tree | a1f8b0dda4a82b1e8b46b96326d1df7aeea5e85c | |
parent | 839c3f7c4937eb8a3e1e5ab2dafff26688af1078 (diff) |
[rpc] Remove deprecated functionality message from validateaddress help
This functionality was removed in v0.18.
-rw-r--r-- | src/rpc/misc.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index 822a0beef9..0a97f80297 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -34,11 +34,7 @@ static UniValue validateaddress(const JSONRPCRequest& request) if (request.fHelp || request.params.size() != 1) throw std::runtime_error( RPCHelpMan{"validateaddress", - "\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", + "\nReturn information about the given bitcoin address.\n", { {"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to validate"}, }, |