Browse Source

Merge pull request #561 from grnbrg/master

Squash case on user-entered seed when restoring a wallet.
283
ThomasV 11 years ago
parent
commit
9f9cfe3170
  1. 3
      gui/qt/installwizard.py

3
gui/qt/installwizard.py

@ -127,7 +127,8 @@ class InstallWizard(QDialog):
if not self.exec_():
return
seed = unicode(seed_e.toPlainText())
seed = seed_e.toPlainText()
seed = unicode(seed.toLower())
if not seed:
QMessageBox.warning(None, _('Error'), _('No seed'), _('OK'))

Loading…
Cancel
Save