Skip to content

Commit

Permalink
harness/btc: Bind to address.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeGruffins committed Dec 23, 2024
1 parent 2b11742 commit 726f473
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dex/testing/btc/base-harness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ tmux send-keys -t $SESSION:0 "${DAEMON} -rpcuser=user -rpcpassword=pass \
-rpcport=${ALPHA_RPC_PORT} -datadir=${ALPHA_DIR} $(deprecateddbd $ALPHA_DESCRIPTOR_WALLET) \
-debug=rpc -debug=net -debug=mempool -debug=walletdb -debug=addrman -debug=mempoolrej \
-whitelist=127.0.0.0/8 -whitelist=::1 \
-txindex=1 -regtest=1 -port=${ALPHA_LISTEN_PORT} -fallbackfee=0.00001 \
-txindex=1 -regtest=1 -bind=127.0.0.1:${ALPHA_LISTEN_PORT} -fallbackfee=0.00001 \
${EXTRA_ARGS}; tmux wait-for -S alpha${SYMBOL}" C-m
sleep 3

Expand All @@ -131,7 +131,7 @@ tmux send-keys -t $SESSION:1 "${DAEMON} -rpcuser=user -rpcpassword=pass $(deprec
-rpcport=${BETA_RPC_PORT} -datadir=${BETA_DIR} -txindex=1 -regtest=1 \
-debug=rpc -debug=net -debug=mempool -debug=walletdb -debug=addrman -debug=mempoolrej \
-whitelist=127.0.0.0/8 -whitelist=::1 \
-port=${BETA_LISTEN_PORT} -fallbackfee=0.00001 ${EXTRA_ARGS}; \
-bind=127.0.0.1:${BETA_LISTEN_PORT} -fallbackfee=0.00001 ${EXTRA_ARGS}; \
tmux wait-for -S beta${SYMBOL}" C-m
sleep 3

Expand Down

0 comments on commit 726f473

Please sign in to comment.