diff options
| author | Gregory Sanders <[email protected]> | 2017-02-01 12:18:31 -0500 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2017-02-01 12:18:31 -0500 |
| commit | 3eba88d44cdfd9d4d2bfc19cd6049d90ee05fc1c (patch) | |
| tree | 05e650b48583862cb94739d5f0d43f05f15beca5 /src/wallet/rpcwallet.cpp | |
| parent | Merge #9624: [Trivial] fix logging typo in FlushStateToDisk() (diff) | |
| download | discoin-3eba88d44cdfd9d4d2bfc19cd6049d90ee05fc1c.tar.xz discoin-3eba88d44cdfd9d4d2bfc19cd6049d90ee05fc1c.zip | |
clarify listunspent amount description
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 6d08f6048..8272bdc43 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2402,7 +2402,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" |