diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-03-23 10:05:21 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-03-23 10:05:24 -0400 |
commit | 7eab2db849d9af19d255dd9fb12aa1f505bb9844 (patch) | |
tree | 52d64c05010ddd981d513ed655c49aae096ddbdf | |
parent | b0222428879f0e0ada09f07bb8832bcb6bfd9d87 (diff) | |
parent | be8b9c62bf3735d2ecb87bb39ba4816df8d2d3e0 (diff) |
Merge #15647: [rpc] Remove deprecated functionality message from validateaddress help
be8b9c62bf [rpc] Remove deprecated functionality message from validateaddress help (John Newbery)
Pull request description:
This functionality was removed in v0.18.
ACKs for commit be8b9c:
MarcoFalke:
utACK be8b9c62bf3735d2ecb87bb39ba4816df8d2d3e0
fanquake:
utACK be8b9c6
Tree-SHA512: 7e30f1e56020aa3a59e736574075191155866788156d0d30eaf963c0a5015ad0de43787c6b73a765319f2dccec0117a2230a312d18ca3f9be3986ce3de4afdb3
-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"}, }, |