From 86453c793a907fdb263624bca91075c41b4b1c51 Mon Sep 17 00:00:00 2001 From: 0ceanSlim Date: Thu, 21 Dec 2023 10:10:48 -0500 Subject: [PATCH] seperate rpc configs in app and cli --- app/src/read_rpc_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/read_rpc_config.py b/app/src/read_rpc_config.py index f655a93..d97214f 100644 --- a/app/src/read_rpc_config.py +++ b/app/src/read_rpc_config.py @@ -1,6 +1,6 @@ import json -def read_rpc_config(filename="../rpc_config.json"): +def read_rpc_config(filename="rpc_config.json"): with open(filename, "r") as config_file: config = json.load(config_file)