Bitcoin Forum
May 08, 2024, 05:03:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Why can't the change be returned to itself?  (Read 1592 times)
oOoOo (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 24, 2011, 06:52:15 PM
 #1

Why is it necessary to utilise a new address in my wallet as a return for my change? Why is it not possible for an address to send the change back to itself??
This is headache inducing...

Is there some kind of conflict? Time delay?? What is it?

..Wait! I got more:

What happens if I used up all 100 preset receive addresses of my wallet when making a transaction? Does the client create another 100 new addresses, or just one? Or does it reuse an old one from my wallet??

Anyone?
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Meni Rosenfeld
Donator
Legendary
*
expert
Offline Offline

Activity: 2058
Merit: 1054



View Profile WWW
July 24, 2011, 07:12:41 PM
 #2

I think it's about anonymity, by creating a new address, an observer doesn't know which output is the recipient and which is the change.

The client always maintains a buffer of 100 addresses, when one is used another is generated.

1EofoZNBhWQ3kxfKnvWkhtMns4AivZArhr   |   Who am I?   |   bitcoin-otc WoT
Bitcoil - Exchange bitcoins for ILS (thread)   |   Israel Bitcoin community homepage (thread)
Analysis of Bitcoin Pooled Mining Reward Systems (thread, summary)  |   PureMining - Infinite-term, deterministic mining bond
Pieter Wuille
Legendary
*
qt
Offline Offline

Activity: 1072
Merit: 1174


View Profile WWW
July 24, 2011, 07:12:41 PM
 #3

If it were to reuse addresses for change, it would be trivial to find out which of both outputs is change and which is payment.

And a new reserve address is generated each time one is used.

I do Bitcoin stuff.
theymos
Administrator
Legendary
*
Offline Offline

Activity: 5194
Merit: 12976


View Profile
July 24, 2011, 07:13:13 PM
 #4

It's not required by the network for change the go to a new address. The client just does it to improve anonymity.

Whenever an address is removed from the pool, the pool is re-filled to 100. So if you take 10 addresses from the pool, 10 more will be generated to bring the pool back to 100.

There's no way to generate more than one address per transaction with the default client

1NXYoJ5xU91Jp83XfVMHwwTUyZFK64BoAD
oOoOo (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 24, 2011, 07:26:09 PM
 #5

So when somebody downloads the client the very first time, and the wallet is created, how many private keys are included in this very first instance?
Is it immediately filled up with 100 or are there no addresses stored at all? Or just one??

Can you please give me the name of the function that does this^^ I'd like to look it up in the code!

Does the client check the # of total addresses with each transaction, or one in a specific time-frame?

Thanks in advance to anyone who can help!
.
error
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500



View Profile
July 24, 2011, 07:58:52 PM
 #6

The very first Bitcoin transactions did send change back to the original input address (example). As theymos mentioned, this was changed early on to help improve privacy.

The first time you run Bitcoin, it generates your pool of 100 addresses.

3KzNGwzRZ6SimWuFAgh4TnXzHpruHMZmV8
randomguy7
Hero Member
*****
Offline Offline

Activity: 527
Merit: 500


View Profile
July 24, 2011, 08:07:02 PM
 #7

Is it possible that the key pool is only synced with the wallet.dat after about 15 keys in the key pool got replaced by new ones?
I did some playing around in testnet. When performing lots of send transactions, it takes about 15 transactions till I see a change in the wallet.dat file size.
Furyan
Full Member
***
Offline Offline

Activity: 175
Merit: 102



View Profile
July 24, 2011, 11:13:49 PM
 #8

Is it possible that the key pool is only synced with the wallet.dat after about 15 keys in the key pool got replaced by new ones?
I did some playing around in testnet. When performing lots of send transactions, it takes about 15 transactions till I see a change in the wallet.dat file size.

That is likely due to disc flushing.  When an fwrite is made to a file, the bytes aren't actually always written to disc until the block size limit is reached or exceeded - the data is kept in memory until that happens.

It is likely taking a number of transactions before the file system decides to flush the written data to disc.

This is, incidentally, how data loss normally occurs - unflushed data doesn't get written to disc before the process exits and is lost. 
randomguy7
Hero Member
*****
Offline Offline

Activity: 527
Merit: 500


View Profile
July 24, 2011, 11:19:19 PM
 #9

Is it possible that the key pool is only synced with the wallet.dat after about 15 keys in the key pool got replaced by new ones?
I did some playing around in testnet. When performing lots of send transactions, it takes about 15 transactions till I see a change in the wallet.dat file size.

That is likely due to disc flushing.  When an fwrite is made to a file, the bytes aren't actually always written to disc until the block size limit is reached or exceeded - the data is kept in memory until that happens.

It is likely taking a number of transactions before the file system decides to flush the written data to disc.

This is, incidentally, how data loss normally occurs - unflushed data doesn't get written to disc before the process exits and is lost. 

Yes but it should anyways show the new file size, no matter if it's already synced to the disk.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
July 26, 2011, 02:22:43 AM
 #10

[Yes but it should anyways show the new file size, no matter if it's already synced to the disk.

Assuming a UNIX system, that's true with write() because once the kernel has returned from write(), the data is in filesystem buffers whether or not it has been flushed to disk -- thus, disk structures are already at least queued for update. fwrite(), however, implements its own layer of buffering in addition to the buffering in the kernel. fwrite() called repeatedly with tiny amounts of data to append will use its own memory to buffer it to at least one disk block, to avoid a context switch into the kernel. Since the kernel has no idea how much (if any) such data is buffered, it doesn't report it when you ask about file size.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
FreeMoney
Legendary
*
Offline Offline

Activity: 1246
Merit: 1014


Strength in numbers


View Profile WWW
July 26, 2011, 04:39:20 AM
 #11

It would be cool to modify the client to use 1 new change address when the amount sent is roughly half of what was in an address, 2 new addresses when it's roughly a third, etc. The change amounts should be random but roughly equal. This would make it really hard to guess any better than chance. Also putting a way to SendMany in the main client would let people obfuscate even more by making designer transactions.

Play Bitcoin Poker at sealswithclubs.eu. We're active and open to everyone.
cunicula
Legendary
*
Offline Offline

Activity: 1050
Merit: 1003


View Profile
July 26, 2011, 05:19:16 AM
 #12

Are there extra bandwidth and storage costs associated with generating new addresses? If so, in percentage terms, how much bandwidth/storage could you save by returning change to the original address?

I am wondering, for example, if it makes sense to impose fees for returning change to a new address.
JoelKatz
Legendary
*
Offline Offline

Activity: 1596
Merit: 1012


Democracy is vulnerable to a 51% attack.


View Profile WWW
July 26, 2011, 05:23:00 AM
 #13

Are there extra bandwidth and storage costs associated with generating new addresses?
No.

Quote
If so, in percentage terms, how much bandwidth/storage could you save by returning change to the original address?
None. Changing one string to another doesn't save anything.

Quote
I am wondering, for example, if it makes sense to impose fees for returning change to a new address.
Since you can't tell that's what's happening, there's no way you could do this. The whole point of using a different address is to make it impossible to know that it is change being returned to the same person.

I am an employee of Ripple. Follow me on Twitter @JoelKatz
1Joe1Katzci1rFcsr9HH7SLuHVnDy2aihZ BM-NBM3FRExVJSJJamV9ccgyWvQfratUHgN
cunicula
Legendary
*
Offline Offline

Activity: 1050
Merit: 1003


View Profile
July 26, 2011, 05:26:35 AM
 #14

Are there extra bandwidth and storage costs associated with generating new addresses?
No.

Quote
If so, in percentage terms, how much bandwidth/storage could you save by returning change to the original address?
None. Changing one string to another doesn't save anything.

Quote
I am wondering, for example, if it makes sense to impose fees for returning change to a new address.
Since you can't tell that's what's happening, there's no way you could do this. The whole point of using a different address is to make it impossible to know that it is change being returned to the same person.


Thanks for the answers. I'm sure this is basic, but how are new addresses associated with each wallet without requiring the transmission and storage of additional information?
JoelKatz
Legendary
*
Offline Offline

Activity: 1596
Merit: 1012


Democracy is vulnerable to a 51% attack.


View Profile WWW
July 26, 2011, 05:53:41 AM
 #15

Thanks for the answers. I'm sure this is basic, but how are new addresses associated with each wallet without requiring the transmission and storage of additional information?
They're not. It's a bit complicated to explain, but let me go into enough detail to give you a very clear understanding:

First, to generate a bitcoin address, you generate a random 256-bit key. This you keep secret, store in your wallet, and never tell anyone. You then perform a mathematical operation that is irreversible that converts this key into a bitcoin address. You then tell people your address. When they send money to you, they put your address in the transaction as the recipient.

When you go to claim bitcoins, say to spend them, you take that 256-bit key you generated and use it to produce a signature to claim the bitcoins. That signature goes into the transaction and proves that you know the 256-bit key that corresponds to that bitcoin address.

Essentially, when you send money to an address, you're just putting a transaction in the blockchain. The address only determines what 256-bit key you need to claim the coins when you eventually do so. If you send me ten transactions all to the same address and then I claim them, the process is precisely the same as if you send them to different addresses and then I claim them. You still send each transaction, I still claim each one. An address sitting in a wallet is completely passive until it is used to claim a transaction.

Say I have 10 bitcoins sent to address A and want to send 5 bitcoins to your address B. I generate a new address C, pull in the 10 bitcoins from A, send out 5 to B and 5 to C. There is no difference to the network between my sending the 5 bitcoins "change" to C or to A. It's the same transaction and the same effort to claim it (just using a different key). The only difference is, by sending 5 bitcoins back to A, you can tell which 5 bitcoins are being paid and which are the change.

I am an employee of Ripple. Follow me on Twitter @JoelKatz
1Joe1Katzci1rFcsr9HH7SLuHVnDy2aihZ BM-NBM3FRExVJSJJamV9ccgyWvQfratUHgN
oOoOo (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 26, 2011, 12:08:47 PM
 #16

It would be cool to modify the client to use 1 new change address (...)

It would be cool if all of this was completely user configurable. But I guess a man can dream now, a man can dream....
.
ribuck
Donator
Hero Member
*
Offline Offline

Activity: 826
Merit: 1039


View Profile
July 26, 2011, 12:29:37 PM
 #17

It would be cool if all of this was completely user configurable. But I guess a man can dream now, a man can dream....
Or a man (or woman) can post a bounty for a developer to enhance the software.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!