URI: 
       tfix typo - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0af700bda04afaffd48143d44664226328df53dc
   DIR parent a220932711f2bdc015d698ef67510fbfcd533d54
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Thu, 26 Oct 2017 15:47:47 +0200
       
       fix typo
       
       Diffstat:
         M lib/wallet.py                       |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1724,7 +1724,7 @@ class Multisig_Wallet(Deterministic_Wallet):
                    self.keystores[name] = load_keystore(self.storage, name)
                self.keystore = self.keystores['x1/']
                xtype = deserialize_xpub(self.keystore.xpub)[0]
       -        self.txin_type = 'p2sh' if xtype == 'standard' else 'xtype'
       +        self.txin_type = 'p2sh' if xtype == 'standard' else xtype
        
            def save_keystore(self):
                for name, k in self.keystores.items():