what does it mean when a transaction contain multiple inputs?

1

Just like https://www.blockchain.com/btc/tx/230636ab4f285ca5e9f4c32dbae581c10d491a99493d8733c594af780f1edc5e

what does it mean when a transaction contain multiple inputs? as i know, an transaction should be signed by the sender`s the private key. However there are a lot of sender in one transaction, how does it happen? thanks

wilson Liu

Posted 2018-09-20T01:08:30.537

Reputation: 111

It is just like in the real world, you combine multiple bills and coins to pay for an item. Two bills of 1 USD to form a payment of 2 USD.Penquin 2018-09-20T01:30:49.797

...and in the real world, your ownership is proven by possession of each the bills. In bitcoin, this is proven by each of the signatures.hedgedandlevered 2018-09-21T23:55:26.543

Answers

2

A single transaction may contain multiple inputs and outputs. It is not the transaction that is signed by the sender, but each input. The signature is in the scriptSig field of each input.

See http://en.bitcoin.it/wiki/transaction

JBaczuk

Posted 2018-09-20T01:08:30.537

Reputation: 6 172