Browse Source

move is_segwit for hardware wallets

283
ThomasV 8 years ago
parent
commit
d5ab8f82f2
  1. 6
      lib/keystore.py

6
lib/keystore.py

@ -75,6 +75,9 @@ class KeyStore(PrintError):
return False
return bool(self.get_tx_derivations(tx))
def is_segwit(self):
return False
class Software_KeyStore(KeyStore):
@ -217,9 +220,6 @@ class Deterministic_KeyStore(Software_KeyStore):
def get_passphrase(self, password):
return pw_decode(self.passphrase, password) if self.passphrase else ''
def is_segwit(self):
return False
class Xpub:

Loading…
Cancel
Save