|
@ -243,7 +243,7 @@ def get_headers_path(config): |
|
|
return os.path.join(config.path, 'blockchain_headers') |
|
|
return os.path.join(config.path, 'blockchain_headers') |
|
|
|
|
|
|
|
|
def user_dir(): |
|
|
def user_dir(): |
|
|
if "HOME" in os.environ: |
|
|
if os.name == 'posix': |
|
|
return os.path.join(os.environ["HOME"], ".electrum") |
|
|
return os.path.join(os.environ["HOME"], ".electrum") |
|
|
elif "APPDATA" in os.environ: |
|
|
elif "APPDATA" in os.environ: |
|
|
return os.path.join(os.environ["APPDATA"], "Electrum") |
|
|
return os.path.join(os.environ["APPDATA"], "Electrum") |
|
|