def confirm_seed(self, seed): assert Wallet.is_seed(seed) msg = _( 'Please retype your seed phrase, to confirm that you properly saved it' ) self.restore_seed_dialog(run_prev=self.create_seed, run_next=self.enter_pin, test=lambda x: x == seed, message=msg)
def confirm_seed(self, seed): assert Wallet.is_seed(seed) msg = _('Please retype your seed phrase, to confirm that you properly saved it') self.restore_seed_dialog(run_prev=self.create_seed, run_next=self.enter_pin, test=lambda x: x==seed, message=msg)
def confirm_seed(self, seed): assert Wallet.is_seed(seed) self.confirm_seed_dialog(run_next=self.add_password, is_valid=lambda x: x==seed)
def confirm_seed(self, seed): assert Wallet.is_seed(seed) title = _('Confirm Seed') msg = _('Please retype your seed phrase, to confirm that you properly saved it') self.enter_seed_dialog(run_next=self.add_password, title=title, message=msg, is_valid=lambda x: x==seed)