Skip to content

Commit

Permalink
Added BITCOIN_DATA_DIR variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-then committed Jun 19, 2024
1 parent de7341e commit ed0c631
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .env-example
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ LOG_HOME=/<path_to_logs_directory>/logs
# This way, you can use any Java version downloaded without really installing it.
# If not specified, the `java` in the environment will be used.
JAVA_BIN_PATH=

# Optionally, set the absolute path of the directory where you want the bitcoin blockchain data to be put (/<path_to_bitcoin_data_dir>/bitcoin-data).
BITCOIN_DATA_DIR=
3 changes: 2 additions & 1 deletion config/regtest-all-keyfiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ module.exports = {
},
btc: {
rpcUser: 'test',
rpcPassword: 'test'
rpcPassword: 'test',
dir: process.env.BITCOIN_DATA_DIR,
},
federate: [
{
Expand Down

0 comments on commit ed0c631

Please sign in to comment.