electrum

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

commit a63b9e527e28e7d9c5e16add39fa1d2dd3d4c6f1
parent 1117741e592c58d9248f8190791bf470672ae219
Author: ThomasV <thomasv@gitorious>
Date:   Fri, 26 Oct 2012 17:44:07 +0200

by default, use user dir

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

diff --git a/lib/verifier.py b/lib/verifier.py @@ -251,9 +251,8 @@ class WalletVerifier(threading.Thread): return hash_encode(h) def path(self): - wdir = user_dir() - if not os.path.exists( wdir ): - wdir = os.path.dirname(self.config.path) + wdir = self.config.get('blockchain_headers_path', user_dir()) + if not os.path.exists( wdir ): os.mkdir(wdir) return os.path.join( wdir, 'blockchain_headers') def save_chunk(self, index, chunk):