electrum

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

commit 4ef6adf3cee9d3d99d648162528ed712fdf8f0ac
parent 83b885c702c08c2512ad81ba3eb7e71d7e6908b7
Author: thomasv <thomasv@gitorious>
Date:   Thu, 31 Oct 2013 15:42:52 +0100

exit after seed message

Diffstat:
Mlib/wallet.py | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lib/wallet.py b/lib/wallet.py @@ -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()