Bitcoin Forum

Other => Beginners & Help => Topic started by: Looser by Choice on January 25, 2013, 08:13:14 PM



Title: Help me with reading blockchain transactions please
Post by: Looser by Choice on January 25, 2013, 08:13:14 PM
Lets take this transaction for example
http://blockchain.info/tx-index/46391193/6367e35f17c0bbf8a8061dc9e231a8db650893f1ba916ff4ffeaa49421e8c76e

I sent just 0.2 BTC but for some reason it says there are 0.08 sent to one address and 0.2 to another.
From where those 0.08 come and what they have to do with my transaction?

I've seen that many times but now decided to test with my own transaction.

Is there a tutorial for reading blockchain transactions?


Title: Re: Help me with reading blockchain transactions please
Post by: lassdas on January 25, 2013, 08:22:04 PM
You buy something for 2 bucks, hand out a $10 bill and get $8 back as change.
The same happens here, you have 1 transaction of 0.28BTC in your wallet, want to send 0.2 to someone and get 0.08 back as change.

As simple as that.


Title: Re: Help me with reading blockchain transactions please
Post by: DannyHamilton on January 25, 2013, 08:36:48 PM
With the way bitcoin works, you can't partially spend a previous output that you received.  It has to be completely spent.  So, if you receive 10 BTC all in a single transaction from someone/somewhere at an address, then that address now has a single 10 BTC output.

Later if you want to send 2 BTC to somebody, the program can use the previous 10 BTC output as an input into the transaction, and create a 2 BTC output to the address where you want to send it.  This leaves 8 BTC leftover in the transaction.  If you don't send those 8 BTC somewhere, then they become miner fees and end up in the coinbase transaction of the new block for the miner to keep.  If you don't want to give those 8 BTC away as fees to the miner, then you need to include a second output in your transaction sending the 8 BTC back to your own wallet.  As an analogy, think of pulling a $10 bill out of your pocket to pay for something that costs $2, you get $8 back in "change".

The way Bitcoin-Qt does this is to create a new bitcoin address that it doesn't tell you about and keep track of that address and the associated private key in your wallet.dat.  Since this isn't an address that you requested in the "Receive Coins" tab of the user interface, it doesn't show up in that list.  Bitcoin-Qt knows about the address since it is in the wallet.dat file, so it includes it in the balance that it shows you.  Bitcoin-Qt uses a new change address for every transaction.  So if you create 10 different transactions, each sending bitcoins somewhere, then your wallet will have used 10 different change addresses (although some of them may be empty if Bitcoin-Qt used the bitcoins associated with some of those address as inputs into other transactions.


Title: Re: Help me with reading blockchain transactions please
Post by: Looser by Choice on February 14, 2013, 03:23:11 PM
aha! Great explanations guys, appreciate it! :)