How do you determine if a transaction is unique?

1

I originally thought one could determine whether a transaction is unique or not by its id. However, if you perform sendmany, then each of these transactions will share the same id, is that right? In this case, how would you go about determining if a transaction is unique?

Ramon Tayag

Posted 2013-04-13T14:04:27.660

Reputation: 321

Answers

3

Each transaction can have multiple inputs and multiple outputs. sendmany is used when you want to send to many accounts. It's all still one transaction.

Eyal

Posted 2013-04-13T14:04:27.660

Reputation: 1 539

1After putting up this post, I realized that too. I guess having them listed as what seemed to me as different transactions in the recenttransactions call confused me a bit. Thanks!Ramon Tayag 2013-04-13T23:48:39.147