mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
windows bitcoin folder fix
This commit is contained in:
parent
7c2c70a86b
commit
db19836868
1 changed files with 1 additions and 1 deletions
2
rpc.py
2
rpc.py
|
|
@ -10,7 +10,7 @@ def get_default_datadir():
|
|||
if sys.platform == 'darwin':
|
||||
datadir = os.path.join(os.environ['HOME'], "Library/Application Support/Bitcoin/")
|
||||
elif sys.platform == 'win32':
|
||||
datadir = os.path.join(os.environ['HOME'], "Bitcoin")
|
||||
datadir = os.path.join(os.environ['APPDATA'], "Bitcoin")
|
||||
else:
|
||||
datadir = os.path.join(os.environ['HOME'], ".bitcoin")
|
||||
return datadir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue