diff options
author | accraze <accraze@gmail.com> | 2016-12-20 17:39:49 -0800 |
---|---|---|
committer | accraze <accraze@gmail.com> | 2016-12-22 09:28:03 -0800 |
commit | 3f67972654748a2f24e4aa95b6f3df5d4574ed55 (patch) | |
tree | 22783e862861dfa66e5bc48b92e0c2aef4099858 /src/wallet | |
parent | 5a70572049d0e8a2e9228e7acf0e07d61996c33c (diff) |
updated listsinceblock rpc docs
fixes #8758
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 5a4fcc743c..11d69ac194 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -1650,6 +1650,7 @@ UniValue listsinceblock(const JSONRPCRequest& request) " \"vout\" : n, (numeric) the vout value\n" " \"fee\": x.xxx, (numeric) The amount of the fee in " + CURRENCY_UNIT + ". This is negative and only available for the 'send' category of transactions.\n" " \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n" + " When it's < 0, it means the transaction conflicted that many blocks ago.\n" " \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions.\n" " \"blockindex\": n, (numeric) The index of the transaction in the block that includes it. Available for 'send' and 'receive' category of transactions.\n" " \"blocktime\": xxx, (numeric) The block time in seconds since epoch (1 Jan 1970 GMT).\n" |