tfix issue #1958 - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 2512f5945ae0d00a570d24c52d179796ff4e0d2f
DIR parent f5380b3500be6fa68db2650732ee5f57f7c66c52
HTML Author: ThomasV <thomasv@electrum.org>
Date: Fri, 7 Oct 2016 18:33:49 +0200
fix issue #1958
Diffstat:
M lib/keystore.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/keystore.py b/lib/keystore.py
t@@ -377,7 +377,7 @@ class Old_KeyStore(Deterministic_KeyStore):
if seed:
try:
seed.decode('hex')
- return OLD_SEED_VERSION, str(seed)
+ return str(seed)
except Exception:
pass
words = seed.split()