From 29a95ea31140fe45426a79c0e89745ae83c56d35 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Mon, 29 May 2023 15:35:59 +0200 Subject: [PATCH] clightning-rest: update module to v0.10.3 --- modules/clightning-rest.nix | 1 + test/tests.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/clightning-rest.nix b/modules/clightning-rest.nix index 82141aa..5166671 100644 --- a/modules/clightning-rest.nix +++ b/modules/clightning-rest.nix @@ -97,6 +97,7 @@ in { Restart = "on-failure"; RestartSec = "10s"; ReadWritePaths = [ cfg.dataDir ]; + inherit (nbLib.allowNetlink) RestrictAddressFamilies; } // nbLib.allowedIPAddresses cfg.tor.enforce // nbLib.nodejs; }; diff --git a/test/tests.py b/test/tests.py index b9795dc..bba2dd0 100644 --- a/test/tests.py +++ b/test/tests.py @@ -248,7 +248,7 @@ def _(): def _(): assert_running("clightning-rest") machine.wait_until_succeeds( - log_has_string("clightning-rest", "cl-rest api server is ready and listening on port: 3001") + log_has_string("clightning-rest", "cl-rest api server is ready and listening") ) @test("spark-wallet")