tfix: do not lower xpub - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit c0535634fda7363b0dc105b7e53d68f6ffd99bfc
DIR parent 671b1574b39ab2bb0c7b90740968f90ecc67ca0a
HTML Author: ThomasV <thomasv@gitorious>
Date: Tue, 22 Apr 2014 15:49:32 +0200
fix: do not lower xpub
Diffstat:
M gui/qt/installwizard.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
t@@ -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