Merge pull request #561 from grnbrg/master

Squash case on user-entered seed when restoring a wallet.
This commit is contained in:
ThomasV 2014-01-29 07:44:27 -08:00
commit 9f9cfe3170
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'))