Browse Source

Squash case on user-entered seed when restoring a wallet.

283
Brian Greenberg 11 years ago
parent
commit
af71483dd8
  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