Fix Bisq and Hub local node port to 8335

Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/05dac8a9-797a-49d0-9b41-4b4e5be56ecf

Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-16 01:11:10 +00:00
committed by GitHub
parent f8ecbf3ee3
commit b29ed2cce7
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ EOF
# Wait for bitcoind RPC to be ready (up to 30 attempts)
ATTEMPTS=0
until ss -ltn 2>/dev/null | grep -q ':8333' || [ "$ATTEMPTS" -ge 30 ]; do
until ss -ltn 2>/dev/null | grep -q ':8335' || [ "$ATTEMPTS" -ge 30 ]; do
ATTEMPTS=$((ATTEMPTS + 1))
sleep 2
done
@@ -70,7 +70,7 @@ EOF
mkdir -p /home/free/.local/share/Bisq
cat > "$BISQ_CONF" << 'EOF'
btcNodes=127.0.0.1:8333
btcNodes=127.0.0.1:8335
useTorForBtc=true
useCustomBtcNodes=true
EOF