texit after seed message - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 4ef6adf3cee9d3d99d648162528ed712fdf8f0ac
DIR parent 83b885c702c08c2512ad81ba3eb7e71d7e6908b7
HTML Author: thomasv <thomasv@gitorious>
Date: Thu, 31 Oct 2013 15:42:52 +0100
exit after seed message
Diffstat:
M lib/wallet.py | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
DIR diff --git a/lib/wallet.py b/lib/wallet.py
t@@ -178,8 +178,11 @@ class Wallet:
if self.seed_version not in [4, 6]:
msg = "This wallet seed is not supported."
- if self.seed_version in [5]: msg += "\nTo open this wallet, try 'git checkout seed_v%d'"%self.seed_version
- raise ValueError(msg)
+ if self.seed_version in [5]:
+ msg += "\nTo open this wallet, try 'git checkout seed_v%d'"%self.seed_version
+ print msg
+ sys.exit(1)
+
self.load_accounts()