Browse Source

Ledger: get new wallet creation working again

This is enough to get new wallet creation working in the
absence of errors.
283
Neil Booth 9 years ago
parent
commit
1ec3ad59cc
  1. 3
      lib/plugins.py
  2. 9
      plugins/ledger/ledger.py
  3. 4
      plugins/ledger/qt.py

3
lib/plugins.py

@ -187,6 +187,9 @@ class BasePlugin(PrintError):
def diagnostic_name(self):
return self.name
def __str__(self):
return self.name
def close(self):
# remove self from hooks
for k in dir(self):

9
plugins/ledger/ledger.py

@ -53,6 +53,9 @@ class BTChipWallet(BIP44_Wallet):
self.device_checked = False
raise Exception(message)
def get_action(self):
pass
def can_create_accounts(self):
return False
@ -140,12 +143,14 @@ class BTChipWallet(BIP44_Wallet):
return self.client
def derive_xkeys(self, root, derivation, password):
derivation = derivation.replace(self.root_name,"44'/0'/")
derivation = '/'.join(derivation.split('/')[1:])
xpub = self.get_public_key(derivation)
return xpub, None
def get_public_key(self, bip32_path):
# S-L-O-W - we don't handle the fingerprint directly, so compute it manually from the previous node
# bip32_path is of the form 44'/0'/1'
# S-L-O-W - we don't handle the fingerprint directly, so compute
# it manually from the previous node
# This only happens once so it's bearable
self.get_client() # prompt for the PIN before displaying the dialog if necessary
self.plugin.handler.show_message("Computing master public key")

4
plugins/ledger/qt.py

@ -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:

Loading…
Cancel
Save