Browse Source

Merge pull request #857 from btchip/deny_export_private_key

Do not crash when asked to export private keys
283
ThomasV 11 years ago
parent
commit
38fb26f1e8
  1. 3
      plugins/btchipwallet.py

3
plugins/btchipwallet.py

@ -219,6 +219,9 @@ class BTChipWallet(NewWallet):
xpub = self.get_public_key(derivation)
return xpub, None
def get_private_key(self, address, password):
return []
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
# This only happens once so it's bearable

Loading…
Cancel
Save