enforce 'chain' parameter in wizard

This commit is contained in:
ThomasV 2013-10-15 10:44:14 +02:00
parent a9d341ec9c
commit 8a4a29dd0c
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ class InstallWizard(QDialog):
elif action == 'watching':
# ask for seed and gap.
K, chain = self.mpk_dialog()
if not K:
if not K or not chain:
return
wallet.seed = ''
wallet.create_watching_only_wallet(chain,K)