From 3266c549dfc831334bed784c3f87c0d5708ce07a Mon Sep 17 00:00:00 2001 From: Bitcoin Txoko <142011724+bitcointxoko@users.noreply.github.com> Date: Tue, 23 Jul 2024 09:13:03 +0200 Subject: [PATCH] Add comments to lnd.nix --- system/bitcoin/lnd.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/system/bitcoin/lnd.nix b/system/bitcoin/lnd.nix index d95fa70..570be06 100644 --- a/system/bitcoin/lnd.nix +++ b/system/bitcoin/lnd.nix @@ -5,13 +5,13 @@ # services.lnd = { enable = true; + # NOTE: In order to avoid collisions with clightning you must disable clightning or + # change the services.clightning.port or services.lnd.port to a port other than + # 9735. + # port = 9736; }; - # NOTE: In order to avoid collisions with clightning you must disable clightning or - # change the services.clightning.port or services.lnd.port to a port other than - # 9735. - # # Set this to create an onion service by which lnd can accept incoming connections # via Tor. # The onion service is automatically announced to peers. @@ -40,5 +40,5 @@ # This will allow you to recover off-chain funds, by force-closing channels. # scp bitcoin-node:/var/lib/lnd/chain/bitcoin/mainnet/channel.backup ./backups/lnd/ # - # Alternatively, you can have these files backed up by services.backups below. + # Alternatively, you can have these files backed up by services.backups. }