Merge pull request #262 from naturallaw777/copilot/fix-bisq-hub-node-connection

Align Bisq and Hub local Bitcoin node endpoint with nix-bitcoin default port (8335)
This commit is contained in:
Sovran_Systems
2026-04-15 20:12:23 -05:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ let
{ label = "Status"; value = "Auto-configured on first boot"; } { label = "Status"; value = "Auto-configured on first boot"; }
]; } ]; }
{ name = "Bisq Auto-Link"; unit = "bisq-autoconnect.service"; type = "system"; icon = "bisq"; enabled = cfg.services.bitcoin; category = "bitcoin-apps"; credentials = [ { name = "Bisq Auto-Link"; unit = "bisq-autoconnect.service"; type = "system"; icon = "bisq"; enabled = cfg.services.bitcoin; category = "bitcoin-apps"; credentials = [
{ label = "Node"; value = "127.0.0.1:8333 (Bitcoin Core)"; } { label = "Node"; value = "127.0.0.1:8335 (Bitcoin Core)"; }
{ label = "Status"; value = "Auto-configured on first boot"; } { label = "Status"; value = "Auto-configured on first boot"; }
]; } ]; }
{ name = "Mempool"; unit = "mempool.service"; type = "system"; icon = "mempool"; enabled = cfg.features.mempool; category = "bitcoin-apps"; credentials = [ { name = "Mempool"; unit = "mempool.service"; type = "system"; icon = "mempool"; enabled = cfg.features.mempool; category = "bitcoin-apps"; credentials = [

View File

@@ -62,7 +62,7 @@ EOF
# Wait for bitcoind RPC to be ready (up to 30 attempts) # Wait for bitcoind RPC to be ready (up to 30 attempts)
ATTEMPTS=0 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)) ATTEMPTS=$((ATTEMPTS + 1))
sleep 2 sleep 2
done done
@@ -70,7 +70,7 @@ EOF
mkdir -p /home/free/.local/share/Bisq mkdir -p /home/free/.local/share/Bisq
cat > "$BISQ_CONF" << 'EOF' cat > "$BISQ_CONF" << 'EOF'
btcNodes=127.0.0.1:8333 btcNodes=127.0.0.1:8335
useTorForBtc=true useTorForBtc=true
useCustomBtcNodes=true useCustomBtcNodes=true
EOF EOF