URI: 
       tmove is_segwit for hardware wallets - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit d5ab8f82f2f9a302d6d958de0a0c58f7abbdeaa3
   DIR parent af54ba023bd67ba9a3321b23e079b145370732bd
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue, 31 Jan 2017 15:31:22 +0100
       
       move is_segwit for hardware wallets
       
       Diffstat:
         M lib/keystore.py                     |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/lib/keystore.py b/lib/keystore.py
       t@@ -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):
        
       t@@ -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: