diff options
| author | fanquake <[email protected]> | 2018-01-29 21:00:27 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2018-01-29 21:00:27 +0800 |
| commit | c6b6385651d5e78daf9dd27717e47e3a8940694b (patch) | |
| tree | 2ea6e2780e251873866d18defed56647d9256385 /src | |
| parent | Merge #12108: [Refactor] Remove unused fQuit var from checkqueue.h (diff) | |
| download | discoin-c6b6385651d5e78daf9dd27717e47e3a8940694b.tar.xz discoin-c6b6385651d5e78daf9dd27717e47e3a8940694b.zip | |
[rpc] Mention that HD is enabled if hdmasterkeyid is present
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index fcee22a14..9364d18d3 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2768,7 +2768,7 @@ UniValue getwalletinfo(const JSONRPCRequest& request) " \"keypoolsize_hd_internal\": xxxx, (numeric) how many new keys are pre-generated for internal use (used for change outputs, only appears if the wallet is using this feature, otherwise external keys are used)\n" " \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n" " \"paytxfee\": x.xxxx, (numeric) the transaction fee configuration, set in " + CURRENCY_UNIT + "/kB\n" - " \"hdmasterkeyid\": \"<hash160>\" (string) the Hash160 of the HD master pubkey\n" + " \"hdmasterkeyid\": \"<hash160>\" (string, optional) the Hash160 of the HD master pubkey (only present when HD is enabled)\n" "}\n" "\nExamples:\n" + HelpExampleCli("getwalletinfo", "") |