diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-02-02 10:13:07 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-02-02 10:13:21 +0100 |
| commit | e30d9287fd48afcbeebc5062870eb6ffa5d2644a (patch) | |
| tree | 8946ef6d662b9b5a46c5717cac42a0d95e1dc723 /src/wallet/rpcwallet.cpp | |
| parent | Merge #9625: Increase minimum debug.log size to 10MB after shrink. (diff) | |
| parent | clarify listunspent amount description (diff) | |
| download | discoin-e30d9287fd48afcbeebc5062870eb6ffa5d2644a.tar.xz discoin-e30d9287fd48afcbeebc5062870eb6ffa5d2644a.zip | |
Merge #9663: [RPC] clarify listunspent amount description
3eba88d clarify listunspent amount description (Gregory Sanders)
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
| -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 8b135b0e0..36753d111 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2416,7 +2416,7 @@ UniValue listunspent(const JSONRPCRequest& request) " \"address\" : \"address\", (string) the bitcoin address\n" " \"account\" : \"account\", (string) DEPRECATED. The associated account, or \"\" for the default account\n" " \"scriptPubKey\" : \"key\", (string) the script key\n" - " \"amount\" : x.xxx, (numeric) the transaction amount in " + CURRENCY_UNIT + "\n" + " \"amount\" : x.xxx, (numeric) the transaction output amount in " + CURRENCY_UNIT + "\n" " \"confirmations\" : n, (numeric) The number of confirmations\n" " \"redeemScript\" : n (string) The redeemScript if scriptPubKey is P2SH\n" " \"spendable\" : xxx, (bool) Whether we have the private keys to spend this output\n" |