Bitcoin Forum

Bitcoin => Development & Technical Discussion => Topic started by: jago25_98 on January 12, 2011, 11:49:04 AM



Title: Bitcoind remind me my address
Post by: jago25_98 on January 12, 2011, 11:49:04 AM
 I can never remember my bitcoin address and how to find out with bitcoind

Would be nice if there was a command to show the address, or something clearer

 thanks!


Title: Re: Bitcoind remind me my address
Post by: davout on January 12, 2011, 11:51:20 AM
bitcoin getnewaddress


Title: Re: Bitcoind remind me my address
Post by: tcatm on January 12, 2011, 04:14:13 PM
You should use getaccountaddress, not getnewaddress. getaccountaddress only creates a new address once you received coins to the previous address.


Title: Re: Bitcoind remind me my address
Post by: Cryptoman on January 12, 2011, 04:17:40 PM
This will show you all of your addresses, even the unused ones:

Code:
bitcoind listreceivedbyaddress 0 true


Title: Re: Bitcoind remind me my address
Post by: jago25_98 on January 15, 2011, 09:13:19 PM
Thanks for the info. I think this should be more prominent in the linux client,

why not list the current address in use in
Code:
bitcoin getinfo
too, well, that's where I expected it to be but my intuition on that might be unusual


Title: Re: Bitcoind remind me my address
Post by: theymos on January 15, 2011, 09:38:02 PM
why not list the current address in use in
Code:
bitcoin getinfo
too, well, that's where I expected it to be but my intuition on that might be unusual

There is no concept of "current address" in bitcoind.


Title: Re: Bitcoind remind me my address
Post by: alowm on January 16, 2011, 02:05:39 AM
It sounds like what you want is:

Code:
bitcoin getmostrecentlygeneratedaddress

No?