What are spent transactions?

2

Satoshi's paper says:

Once the latest transaction in a coin is buried under enough blocks, the spent transactions before it can be discarded to save disk space.

What are spent transactions?

Green

Posted 2015-08-31T09:47:01.363

Reputation: 151

Answers

2

Balances in Bitcoin are stored in Unspent Transaction Outputs . UTXO can be used as inputs when a transaction is created. They can only be spent completely, while the resulting transaction creates new ones in the process, redistributing the balance to the recipients of the transaction. Spent transactions refers to Transaction Outputs that have been expended.

Murch

Posted 2015-08-31T09:47:01.363

Reputation: 41 609

@green Note that this way of saving disk space as Satoshi described it is not actually used as such. Bitcoin simply keeps a separate UTXO database and basically only keeps the original blocks (with the actual transactions) to be able to upload them to any per asking for them. Recent Bitcoin Core versions do have the ability to simply completely delete really old blocks. This is called purging.Jannes 2015-09-08T03:23:25.167