commit 2512f5945ae0d00a570d24c52d179796ff4e0d2f parent f5380b3500be6fa68db2650732ee5f57f7c66c52 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(-)
diff --git a/lib/keystore.py b/lib/keystore.py @@ -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()