From af71483dd8e61837c785a7eb602502eda6713cad Mon Sep 17 00:00:00 2001 From: Brian Greenberg Date: Mon, 27 Jan 2014 21:03:00 -0600 Subject: [PATCH] Squash case on user-entered seed when restoring a wallet. --- gui/qt/installwizard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 83adc468..90d4f061 100644 --- a/gui/qt/installwizard.py +++ b/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'))