Browse Source

Merge pull request #3299 from SomberNight/bip39_checksum_after_entering_seed

fix: bip39 checksum sometimes not calculated
3.0.x
ThomasV 7 years ago
committed by GitHub
parent
commit
ff0cd16aec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gui/qt/seed_dialog.py

2
gui/qt/seed_dialog.py

@ -63,8 +63,8 @@ class SeedLayout(QVBoxLayout):
if 'bip39' in self.options:
def f(b):
self.is_seed = (lambda x: bool(x)) if b else self.saved_is_seed
self.on_edit()
self.is_bip39 = b
self.on_edit()
if b:
msg = ' '.join([
'<b>' + _('Warning') + ':</b> ',

Loading…
Cancel
Save