From 6800ff02a83f41048ff15839faf32553873e9db2 Mon Sep 17 00:00:00 2001 From: ivd Date: Thu, 17 Oct 2019 13:33:50 +0300 Subject: [PATCH] Fix configs.__init__ invalid node data path --- configs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/__init__.py b/configs/__init__.py index d47b24a8..c1184da2 100644 --- a/configs/__init__.py +++ b/configs/__init__.py @@ -27,7 +27,7 @@ SKALE_DIR = os.path.join(HOME_DIR, '.skale') PROJECT_PATH = os.path.join(SKALE_DIR, '.skale-node') -NODE_DATA_PATH = os.path.join(SKALE_DIR, 'NODE_DATA_PATH') +NODE_DATA_PATH = os.path.join(SKALE_DIR, 'node_data') CONFIG_FILEPATH = os.environ.get('CONFIG_FILEPATH') or \ os.path.join(SKALE_DIR, '.skale-cli.yaml')