aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2018-07-27 12:21:12 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2018-07-27 12:21:12 -0700
commitf6b7fc349ccf9cfbeb7e91e19c20e2a2fcc9026f (patch)
tree4f5e3cb6933ef7399fb69d47b935b3ab24467c23 /src/rpc
parentfddea672eb8f63012f2e9ce04fa477e5d4140750 (diff)
downloadbitcoin-f6b7fc349ccf9cfbeb7e91e19c20e2a2fcc9026f.tar.xz
Support h instead of ' in hardened descriptor paths
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/blockchain.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp
index 307af61917..46dec4ca6e 100644
--- a/src/rpc/blockchain.cpp
+++ b/src/rpc/blockchain.cpp
@@ -1999,7 +1999,8 @@ UniValue scantxoutset(const JSONRPCRequest& request)
" pkh(<pubkey>) P2PKH outputs for the given pubkey\n"
" sh(multi(<n>,<pubkey>,<pubkey>,...)) P2SH-multisig outputs for the given threshold and pubkeys\n"
"\nIn the above, <pubkey> either refers to a fixed public key in hexadecimal notation, or to an xpub/xprv optionally followed by one\n"
- "or more path elements separated by \"/\", and optionally ending in \"/*\" or \"/*'\" to specify all unhardened or hardened child keys.\n"
+ "or more path elements separated by \"/\", and optionally ending in \"/*\" (unhardened), or \"/*'\" or \"/*h\" (hardened) to specify all\n"
+ "unhardened or hardened child keys.\n"
"In the latter case, a range needs to be specified by below if different from 1000.\n"
"For more information on output descriptors, see the documentation at TODO\n"
"\nArguments:\n"