|
|
|
|
|
by thaumasiotes
2666 days ago
|
|
It looks like it is true in a technical sense; a bitcoin transaction record specifies a prior transaction as its input, rather than specifying a source address. So as a purely formal matter, your example records will look like this in relevant part: T0885: 100 Satoshi from T0002 to address xxxxx0x # 1 wallet, 2 Satoshi
T1001: 1 Satoshi from T0885 to address xxxxx1x
T1104: 1 Satoshi from T0885 to address xxxxx2x # Each Satoshi moves to a separate new wallet
T1300: 1 Satoshi from T1104 to address xxxxx3x
T1400: 1 Satoshi from T1001 to address xxxxx3x # and then they recombine
https://en.bitcoin.it/wiki/TransactionFrom that record, it's clear that one Satoshi moved from address 0x to address 3x by way of transaction 1001, and the other one did the same by way of transaction 1104. However, there is no instrumental difference between an address's balance from one transaction and its balance from another transaction, as the behavior of the address is controlled by the private key associated with that address, and two balances belonging to the same address necessarily share the associated private key. I'm not sure what this is supposed to accomplish. |
|