Browse Source

fix: do not lower xpub

master
ThomasV 12 years ago
parent
commit
c0535634fd
  1. 2
      gui/qt/installwizard.py

2
gui/qt/installwizard.py

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

Loading…
Cancel
Save