electrum

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

commit 94d34c37c9900b1b95bcc7642e148ed0e47c90fa
parent e606ec9506c98320980ded73c5e23099571c4beb
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 10 Nov 2011 09:51:08 +0100

better use its own dir; some users might think they can safely delete their Bitcoin dir

Diffstat:
Mclient/electrum.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/client/electrum.py b/client/electrum.py @@ -217,11 +217,11 @@ class InvalidPassword(Exception): if "HOME" in os.environ: - wallet_dir = os.environ["HOME"] + '/.bitcoin/' + wallet_dir = os.environ["HOME"] + '/.electrum/' elif "LOCALAPPDATA" in os.environ: - wallet_dir = os.environ["LOCALAPPDATA"] + '/Bitcoin/' + wallet_dir = os.environ["LOCALAPPDATA"] + '/Electrum/' elif "APPDATA" in os.environ: - wallet_dir = os.environ["APPDATA"] + '/Bitcoin/' + wallet_dir = os.environ["APPDATA"] + '/Electrum/' else: print "No home directory found in environment variables." raise