fix: do not lower xpub
authorThomasV <thomasv@gitorious>
Tue, 22 Apr 2014 13:49:32 +0000 (15:49 +0200)
committerThomasV <thomasv@gitorious>
Tue, 22 Apr 2014 13:49:32 +0000 (15:49 +0200)
gui/qt/installwizard.py

index 1f857ef..ef10508 100644 (file)
@@ -85,7 +85,7 @@ class InstallWizard(QDialog):
 
 
     def get_seed_text(self, seed_e):
-        text = unicode(seed_e.toPlainText()).lower().strip()
+        text = unicode(seed_e.toPlainText()).strip()
         text = ' '.join(text.split())
         return text