Hello,
I want to check if a transaction was successfully sent. How can I do this with the PHP RPC API?
Maybe about getting the returned transaction id? How do I do this?
e.g. I use this command for sending: $bitcoin->sendfrom(fromthisaccount,tothisbitcoinaddress,$sendamount,4,"txcomment");
Hope somebody can help me!
Thank you!
$txid = $bitcoin->sendfrom(fromthisaccount,tothisbitcoinaddress,$sendamount,4,"txcomment");
$txid contains your transaction id now.