aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjoemphilips <[email protected]>2018-03-30 17:59:37 +0900
committerjoemphilips <[email protected]>2018-03-31 14:30:51 +0900
commit05c03d1249c6fe30dbfcea9f3f3a3bd02106035b (patch)
treed5d7a09c2503e721d354350616620da81e32a006 /src
parentMerge #12172: Bugfix: RPC: savemempool: Don't save until LoadMempool() is fin... (diff)
downloaddiscoin-05c03d1249c6fe30dbfcea9f3f3a3bd02106035b.tar.xz
discoin-05c03d1249c6fe30dbfcea9f3f3a3bd02106035b.zip
rpc: fix type mistmatch in listreceivedbyaddress
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index c34b166a4..ceed8eb57 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -1560,7 +1560,7 @@ UniValue listreceivedbyaddress(const JSONRPCRequest& request)
" \"confirmations\" : n, (numeric) The number of confirmations of the most recent transaction included\n"
" \"label\" : \"label\", (string) The label of the receiving address. The default label is \"\".\n"
" \"txids\": [\n"
- " n, (numeric) The ids of transactions received with the address \n"
+ " \"txid\", (string) The ids of transactions received with the address \n"
" ...\n"
" ]\n"
" }\n"