From f8ecbf3ee393c6060f208eda7680b8807eeebd2d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Apr 2026 01:09:40 +0000 Subject: [PATCH 1/2] Initial plan From b29ed2cce7d799831e40fb7ac7df15c18994b759 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 16 Apr 2026 01:11:10 +0000 Subject: [PATCH 2/2] 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> --- modules/core/sovran-hub.nix | 2 +- modules/wallet-autoconnect.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index eee4b75..bbe0fc1 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -64,7 +64,7 @@ let { 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 = [ - { 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"; } ]; } { name = "Mempool"; unit = "mempool.service"; type = "system"; icon = "mempool"; enabled = cfg.features.mempool; category = "bitcoin-apps"; credentials = [ diff --git a/modules/wallet-autoconnect.nix b/modules/wallet-autoconnect.nix index 0993e8f..2245b89 100644 --- a/modules/wallet-autoconnect.nix +++ b/modules/wallet-autoconnect.nix @@ -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