1
0

force subclassing of self.last_if_single_password in NewWalletWizard

This commit is contained in:
Sander van Grieken
2022-10-24 10:38:43 +02:00
parent 6ca733a12f
commit 0a9c100382

View File

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