diff --git a/lib/keystore.py b/lib/keystore.py index 8db27e00..e338bef0 100644 --- a/lib/keystore.py +++ b/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: