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

This commit is contained in:
Brian Greenberg 2014-01-27 21:03:00 -06:00
parent c7ad369e55
commit af71483dd8
1 changed files with 2 additions and 1 deletions

View File

@ -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'))