From 48f6bc5f81ce30544e83897415f26b58db1177ec Mon Sep 17 00:00:00 2001 From: nixbitcoin Date: Sun, 12 May 2019 18:29:22 +0200 Subject: [PATCH] Fix clightning port typo (9375 instead of 9735) --- modules/nix-bitcoin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nix-bitcoin.nix b/modules/nix-bitcoin.nix index 55fc4df..a4779c4 100644 --- a/modules/nix-bitcoin.nix +++ b/modules/nix-bitcoin.nix @@ -88,7 +88,7 @@ in { services.clightning.bind-addr = "127.0.0.1:9735"; services.tor.hiddenServices.clightning = { map = [{ - port = 9375; toPort = 9375; + port = 9735; toPort = 9735; }]; version = 3; };