Skip to content

Commit

Permalink
Merge pull request #51 from skalenetwork/bug/SKALE-fix-invalid-config…
Browse files Browse the repository at this point in the history
…-path

Fix configs.__init__ invalid node data path
  • Loading branch information
badrogger authored Oct 17, 2019
2 parents d3c90d1 + 6800ff0 commit 1418c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 1418c1c

Please sign in to comment.