Double transaction on same hash (transaction ID) - Loosing 0.01 btc each time

0

Each time I send some btc to another bitcoin wallet there is a second transaction on the same transaction ID (hash) and each times i am loosing around 75 USD.

You can see by yourself here;

https://www.blockchain.com/btc/address/1NrZWuS4J8MAqX63NHFuLrdmBYf6FttX29

Another weird fact is that on my bitcoin wallet software balance, it's not showing to balance I lost.

Any help would be very appreciated,

Thanks.

John Smith

Posted 2018-08-02T20:04:15.423

Reputation: 1

Question was closed 2018-08-04T04:41:09.613

what wallet software are you using? And you mean .001 BTC? The only one that I could see was this one: 5f48a419f861ca157e938492a5a8550a85c4d93749cd7d2bcdb9822be6ee9b3bJBaczuk 2018-08-02T20:16:01.810

Yeah it looks like change, and it's not .01BTC every time.JBaczuk 2018-08-02T20:46:31.003

@JohnSmith to clarify: you are confusing terms slightly, a 'wallet' is software that holds a collection of keys, and those keys let you spend bitcoins at addresses related to them. I believe what you are calling a 'transaction ID (hash)' is actually just a bitcoin address. Looking at the 3 txs you linked, I see three UTXOs from the same bitcoin address (1NrZW...) being spent to various addresses, with what appears to be a change address generated for each transaction. See the other replies for info on what a change address is. That should answer your main question.chytrik 2018-08-02T22:22:37.670

Answers

1

See above link about How change works. Looking at this transaction 5f48a419f861ca157e938492a5a8550a85c4d93749cd7d2bcdb9822be6ee9b3b:

(Assuming) you tried to send .001 BTC to 1PqarrL2NAobkNbExtjBA1KEzXk7rwPfGQ, but there did not exist any unspent transaction outputs (UTXO) to satisfy that exact amount (plus tx fee). So your wallet chose to use the UTXO worth 0.01105895 BTC. It then sent the change (minus tx fee) back to your wallet in a separate output to 147FWjxpW9nYo5Z32qaHSoUZbVCNgsPGuL. The address for the change is different because it is based on a different public key (it is a hash of a public key, thus a different address), but is presumably still spendable by your wallet.

JBaczuk

Posted 2018-08-02T20:04:15.423

Reputation: 6 172

allright ! good to know, that's why my wallet software doesn't show the "lost" funds since there is NO lost funds. Thanks a lot for this explanation and I feel way better knowing that I haven't lost some digital gold hehe.John Smith 2018-08-02T22:20:31.360