1
0

Ledger: get new wallet creation working again

This is enough to get new wallet creation working in the
absence of errors.
This commit is contained in:
Neil Booth
2016-01-11 14:23:35 +09:00
parent 45f518e191
commit 1ec3ad59cc
3 changed files with 13 additions and 3 deletions

View File

@@ -23,8 +23,10 @@ class Plugin(LedgerPlugin):
wallet.force_watching_only = True
def on_create_wallet(self, wallet, wizard):
assert type(wallet) == self.wallet_class
self.handler = BTChipQTHandler(wizard)
wallet.create_main_account()
# self.select_device(wallet)
wallet.create_hd_account(None)
class BTChipQTHandler: