What system should I implement to make use of accounts with Bitcoin Core 'accounts' now deprecated?

4

I am designing one of the Bitcoin based app on Bitcoin-Core using account system.

Accounts I have used to store users wallet balance in different accounts.

But since I know it is deprecated, then how can i store users individual balance in separate identifiable addresses.

Is there any database we need to implement?

dreamitbig

Posted 2017-05-01T03:56:40.633

Reputation: 41

Answers

1

Accounts were replaced by labels, a more flexible tool which can probably be made to fit your requirement. Alternatively, if you have really been using the now-obsolete "accounts" feature to maintain separate wallets within a wallet, there is now an option to use separate wallets in separate wallet files

Owen Currie

Posted 2017-05-01T03:56:40.633

Reputation: 11

0

The best way to implement accounts is to insource

  • Address database
  • Private key database
  • Transaction signing

and leave only transaction relaying and checking for transactions to Bitcoin Core.

MCCCS

Posted 2017-05-01T03:56:40.633

Reputation: 5 827