Skip to content

Commit

Permalink
fix: stacks-node --config option change
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Feb 6, 2024
1 parent c5e985e commit e40a25b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.e2e
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ RUN <<EOF
export STACKS_EVENT_OBSERVER="127.0.0.1:3998"
mkdir -p /chainstate/stacks-blockchain-data
envsubst < config.toml.in > config.toml
stacks-node start --config=config.toml &
stacks-node start --config config.toml &
STACKS_PID=$!

while true; do
Expand Down Expand Up @@ -274,7 +274,7 @@ cat > run.sh <<'EOM'
bitcoin-cli -rpcwait generatetoaddress 1 $BTC_ADDR

envsubst < config.toml.in > config.toml
stacks-node start --config=config.toml &
stacks-node start --config config.toml &
STACKS_PID=$!

function start_miner() {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-follower.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
until $(curl -o /dev/null -s stacks-node-miner:20443); do
sleep 5
done
exec stacks-node start --config=config.toml
exec stacks-node start --config config.toml
networks:
stacks:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ services:
rm -rf $${DATA_DIR}/*
envsubst < config.toml.in > config.toml
bitcoin-cli -rpcwait -rpcconnect=bitcoind getmininginfo
exec stacks-node start --config=config.toml
exec stacks-node start --config config.toml
stacker:
networks:
Expand Down

0 comments on commit e40a25b

Please sign in to comment.