Browse Source

enforce 'chain' parameter in wizard

283
ThomasV 11 years ago
parent
commit
8a4a29dd0c
  1. 2
      gui/qt/installwizard.py

2
gui/qt/installwizard.py

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

Loading…
Cancel
Save