mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
Do not crash when asked to export private keys
This commit is contained in:
parent
c02faeba2d
commit
f296e5e5ef
1 changed files with 3 additions and 0 deletions
|
@ -219,6 +219,9 @@ class BTChipWallet(NewWallet):
|
||||||
xpub = self.get_public_key(derivation)
|
xpub = self.get_public_key(derivation)
|
||||||
return xpub, None
|
return xpub, None
|
||||||
|
|
||||||
|
def get_private_key(self, address, password):
|
||||||
|
return []
|
||||||
|
|
||||||
def get_public_key(self, bip32_path):
|
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
|
# 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
|
# This only happens once so it's bearable
|
||||||
|
|
Loading…
Add table
Reference in a new issue