You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bitcoinRPC.py->get_fund_status might better served by listreceivedbyaddress instead of getreceivedbyaddress
Listrecievedbyaddress provides richer information on incoming txs allowing for the program to provide feedback like fund tx in mempool but unconfirmed.
Json structure of listrecievedbyaddress results
Result:
[
{
"involvesWatchonly" : true, (bool) Only returned if imported addresses were involved in transaction
"address" : "receivingaddress", (string) The receiving address
"account" : "accountname", (string) DEPRECATED. The account of the receiving address. The default account is "".
"amount" : x.xxx, (numeric) The total amount in BTC received by the address
"confirmations" : n, (numeric) The number of confirmations of the most recent transaction included
"label" : "label", (string) A comment for the address/transaction, if any
"txids": [
n, (numeric) The ids of transactions received with the address
...
]
}
,...
]
The text was updated successfully, but these errors were encountered:
bitcoinRPC.py
->get_fund_status
might better served bylistreceivedbyaddress
instead ofgetreceivedbyaddress
Listrecievedbyaddress
provides richer information on incoming txs allowing for the program to provide feedback like fund tx in mempool but unconfirmed.Json structure of
listrecievedbyaddress
resultsThe text was updated successfully, but these errors were encountered: