This commit is contained in:
ThomasV 2017-10-26 15:47:47 +02:00
parent a220932711
commit 0af700bda0
1 changed files with 1 additions and 1 deletions

View File

@ -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():