Browse Source

force subclassing of self.last_if_single_password in NewWalletWizard

patch-4
Sander van Grieken 2 years ago
parent
commit
0a9c100382
  1. 2
      electrum/wizard.py

2
electrum/wizard.py

@ -179,7 +179,7 @@ class NewWalletWizard(AbstractWizard):
return self._current
def last_if_single_password(self, view, wizard_data):
return False # TODO: self._daemon.config.get('single_password')
raise NotImplementedError()
def last_if_single_password_and_not_bip39(self, view, wizard_data):
return self.last_if_single_password(view, wizard_data) and not wizard_data['seed_type'] == 'bip39'

Loading…
Cancel
Save