5

What is the correct rpc call to start a new account on a bitcoind server?

ZenBalance
  • 373
  • 3
  • 11

1 Answers1

3

You can do one of the following:

  • create an address using getnewaddress
  • send some coins with a move command

Those commands will automatically create the target account if it doesn't exist.

o0'.
  • 5,240
  • 6
  • 38
  • 66
  • 2
    This can be done in one step with `getnewaddress ` [API call list](https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list) – Nick ODell Feb 24 '13 at 01:51
  • @NickODell I meant he could do one thing or the other, I'll reword – o0'. Feb 24 '13 at 10:13