commit 0af700bda04afaffd48143d44664226328df53dc
parent a220932711f2bdc015d698ef67510fbfcd533d54
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 26 Oct 2017 15:47:47 +0200
fix typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/wallet.py b/lib/wallet.py
@@ -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():