From dc8611b9207e3f0592e7ccbaa1f3d8889351daa5 Mon Sep 17 00:00:00 2001 From: Shawn M Date: Sat, 12 Mar 2022 02:08:35 -0800 Subject: [PATCH] LDOGE Port --- bitcoin/rpc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitcoin/rpc.py b/bitcoin/rpc.py index 87222f54..379ab0e9 100644 --- a/bitcoin/rpc.py +++ b/bitcoin/rpc.py @@ -71,10 +71,10 @@ def __init__(self, service_url=None, if platform.system() == 'Darwin': btc_conf_file = os.path.expanduser('~/Library/Application Support/Bitcoin/') elif platform.system() == 'Windows': - btc_conf_file = os.path.join(os.environ['APPDATA'], 'Bitcoin') + btc_conf_file = os.path.join(os.environ['APPDATA'], 'Litedoge') else: - btc_conf_file = os.path.expanduser('~/.bitcoin') - btc_conf_file = os.path.join(btc_conf_file, 'bitcoin.conf') + btc_conf_file = os.path.expanduser('~/.litedoge') + btc_conf_file = os.path.join(btc_conf_file, 'litedoge.conf') # Extract contents of bitcoin.conf to build service_url with open(btc_conf_file, 'r') as fd: