Skip to content

Commit

Permalink
wizard: call on_restore_seed, on_restore_bip39 through self.run. fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Jan 2, 2021
1 parent 77e0d37 commit b2ab2a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions electrum/base_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,13 +509,13 @@ def restore_from_seed(self):
self.opt_ext = True
is_cosigning_seed = lambda x: mnemonic.seed_type(x) in ['standard', 'segwit']
test = mnemonic.is_seed if self.wallet_type == 'standard' else is_cosigning_seed
self.restore_seed_dialog(run_next=self.on_restore_seed, test=test)
f = lambda *args: self.run('on_restore_seed', *args)
self.restore_seed_dialog(run_next=f, test=test)

def on_restore_seed(self, seed, is_bip39, is_ext):
self.seed_type = 'bip39' if is_bip39 else mnemonic.seed_type(seed)
if self.seed_type == 'bip39':
def f(passphrase):
self.on_restore_bip39(seed, passphrase)
f = lambda passphrase: self.run('on_restore_bip39', seed, passphrase)
self.passphrase_dialog(run_next=f, is_restoring=True) if is_ext else f('')
elif self.seed_type in ['standard', 'segwit']:
f = lambda passphrase: self.run('create_keystore', seed, passphrase)
Expand Down

0 comments on commit b2ab2a9

Please sign in to comment.