Exemplo n.º 1
0
 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)
Exemplo n.º 2
0
 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)
Exemplo n.º 3
0
 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)
Exemplo n.º 4
0
 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)