Skip to content

Commit 7c06171

Browse files
author
MarcoFalke
committed
Merge #12837: rpc: fix type mistmatch in listreceivedbyaddress
05c03d1 rpc: fix type mistmatch in listreceivedbyaddress (joemphilips) Pull request description: `txids` filed in return value is supposed be `string` but it was `numeric` in the help message Tree-SHA512: 7d860994c2d1d9149b41fd7afefc1a44460eede5a023070fcc18b0a4a19a26c5eec5abd157038c15fe7d50a3390bdaf7a4823279129eb1458b0d3c6141a533ee
2 parents 3cf76c2 + 05c03d1 commit 7c06171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1577,7 +1577,7 @@ UniValue listreceivedbyaddress(const JSONRPCRequest& request)
15771577
" \"confirmations\" : n, (numeric) The number of confirmations of the most recent transaction included\n"
15781578
" \"label\" : \"label\", (string) The label of the receiving address. The default label is \"\".\n"
15791579
" \"txids\": [\n"
1580-
" n, (numeric) The ids of transactions received with the address \n"
1580+
" \"txid\", (string) The ids of transactions received with the address \n"
15811581
" ...\n"
15821582
" ]\n"
15831583
" }\n"

0 commit comments

Comments
 (0)