1
0

Install wizard multisig improvement

Preserves independence of wizard.py from wallet type;
the dependence is expressed entirely through actions

Fixes #1611
This commit is contained in:
Neil Booth
2016-01-06 08:02:52 +09:00
parent 59343ec6ec
commit 4e7c6e5d16
2 changed files with 13 additions and 8 deletions

View File

@@ -1817,6 +1817,10 @@ class Multisig_Wallet(BIP32_Wallet, Mnemonic):
def get_master_public_keys(self):
return self.master_public_keys
def get_action(self):
if not self.get_master_public_key():
return 'create_seed_and_cosigners'
class OldWallet(Deterministic_Wallet):
wallet_type = 'old'