electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 9f9cfe31701604479f94dc7d7a14cdc389644b33
parent 989a95bf25d362c175b2b3c1a3b423025d38dbdb
Author: ThomasV <thomasv1@gmx.de>
Date:   Wed, 29 Jan 2014 07:44:27 -0800

Merge pull request #561 from grnbrg/master

Squash case on user-entered seed when restoring a wallet.
Diffstat:
Mgui/qt/installwizard.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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'))