Browse Source

Merge pull request #5576

8f6860a Bugfix: RPCWallet: Docs: Booleans aren't quoted (Luke Dashjr)
0.13
Wladimir J. van der Laan 10 years ago
parent
commit
0a42036ded
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 4
      src/rpcwallet.cpp

4
src/rpcwallet.cpp

@ -1103,7 +1103,7 @@ Value listreceivedbyaddress(const Array& params, bool fHelp) @@ -1103,7 +1103,7 @@ Value listreceivedbyaddress(const Array& params, bool fHelp)
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"involvesWatchonly\" : true, (bool) Only returned if imported addresses were involved in transaction\n"
" \"address\" : \"receivingaddress\", (string) The receiving address\n"
" \"account\" : \"accountname\", (string) The account of the receiving address. The default account is \"\".\n"
" \"amount\" : x.xxx, (numeric) The total amount in btc received by the address\n"
@ -1135,7 +1135,7 @@ Value listreceivedbyaccount(const Array& params, bool fHelp) @@ -1135,7 +1135,7 @@ Value listreceivedbyaccount(const Array& params, bool fHelp)
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"involvesWatchonly\" : true, (bool) Only returned if imported addresses were involved in transaction\n"
" \"account\" : \"accountname\", (string) The account name of the receiving account\n"
" \"amount\" : x.xxx, (numeric) The total amount received by addresses with this account\n"
" \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n"

Loading…
Cancel
Save