fix: do not lower xpub

This commit is contained in:
ThomasV 2014-04-22 15:49:32 +02:00
parent 671b1574b3
commit c0535634fd
1 changed files with 1 additions and 1 deletions

View 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