From 8301d66984d28ac7213a13651d9654e97d0f048f Mon Sep 17 00:00:00 2001 From: Steven Briscoe Date: Thu, 12 Jan 2023 19:30:11 +0000 Subject: [PATCH] Allow LND to connect to Bitcoin Core on other networks (#365) Co-authored-by: Steven Briscoe --- lightning/exports.sh | 2 +- lightning/umbrel-app.yml | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lightning/exports.sh b/lightning/exports.sh index 3ab508b..e758710 100644 --- a/lightning/exports.sh +++ b/lightning/exports.sh @@ -25,7 +25,7 @@ BIN_ARGS+=( "--accept-amp" ) BIN_ARGS+=( "--rpcmiddleware.enable" ) # [Bitcoind] -BIN_ARGS+=( "--bitcoind.rpchost=${APP_BITCOIN_NODE_IP}" ) +BIN_ARGS+=( "--bitcoind.rpchost=${APP_BITCOIN_NODE_IP}:${APP_BITCOIN_RPC_PORT}" ) BIN_ARGS+=( "--bitcoind.rpcuser=${APP_BITCOIN_RPC_USER}" ) BIN_ARGS+=( "--bitcoind.rpcpass=${APP_BITCOIN_RPC_PASS}" ) BIN_ARGS+=( "--bitcoind.zmqpubrawblock=tcp://${APP_BITCOIN_NODE_IP}:${APP_BITCOIN_ZMQ_RAWBLOCK_PORT}" ) diff --git a/lightning/umbrel-app.yml b/lightning/umbrel-app.yml index 982743a..b3c3406 100644 --- a/lightning/umbrel-app.yml +++ b/lightning/umbrel-app.yml @@ -2,7 +2,7 @@ manifestVersion: 1.1 id: lightning category: Finance name: Lightning Node -version: "0.15.5-beta" +version: "0.15.5-beta-patch-1" tagline: Run your personal Lightning Network node description: >- Run your personal Lightning Network node, and join the future of Bitcoin today. @@ -22,7 +22,10 @@ description: >- An official app from Umbrel. releaseNotes: >- - Bug Fixes: + Umbrel patch: + - LND will now connect to Bitcoin Core on other networks e.g. testnet + + LND Bug Fixes: - A Taproot related key tweak issue was fixed in btcd that affected remote signing setups.