Finish moving the multisig regex to one place

This commit is contained in:
Neil Booth 2016-01-02 00:39:44 +09:00
parent 12f62212ba
commit dbf154d5f2
1 changed files with 1 additions and 3 deletions

View File

@ -1770,9 +1770,7 @@ class Multisig_Wallet(BIP32_Wallet, Mnemonic):
def __init__(self, storage):
BIP32_Wallet.__init__(self, storage)
self.wallet_type = storage.get('wallet_type')
m = re.match('(\d+)of(\d+)', self.wallet_type)
self.m = int(m.group(1))
self.n = int(m.group(2))
self.m, self.n = Wallet.multisig_type(self.wallet_type)
def load_accounts(self):
self.accounts = {}