2
What is the best method of getting the transaction id for the last payment sent to an address with n confirmations ?
getbalance address with minconf will give me a balance
but what I would like to do is get the full details of the last transaction made to an address, not only the balance.
I could do a something like listtransactions then filter out the data, I was wondering is there a simpler way that would not require me first to know the account associated with the address.
Yeah its seems like the only way to get the transaction Ids. What I do now is issue a new address every time I want a paypent then call getreceivedbyaddress <address> minconf to confirm payment, if they send more than once then thats still in the balance but it wont give me the txn ids – Abelgo – 2014-05-14T07:35:05.367