From 411b131c3a125fa6f64b6e0068396c0847bacbc6 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 9 May 2025 13:31:20 +0200 Subject: [PATCH] test: remove clightning plugin start timeout patch Unneded because the timeout has been increased upstream: https://github.com/ElementsProject/lightning/commit/ee3133f19885269985180bd20e0b9737c70cf86c --- test/tests.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/tests.nix b/test/tests.nix index 89a1595..4565059 100644 --- a/test/tests.nix +++ b/test/tests.nix @@ -271,17 +271,6 @@ let scenarios.secureNode ../modules/presets/hardened-extended.nix ]; - - # Patch clightning to increase the plugin init timeout. - # Otherwise this test can fail on slower hardware. - nix-bitcoin.pkgOverlays = super: self: { - clightning = super.clightning.overrideAttrs (old: { - postPatch = old.postPatch + '' - substituteInPlace lightningd/plugin.c \ - --replace-fail "#define PLUGIN_MANIFEST_TIMEOUT 60" "#define PLUGIN_MANIFEST_TIMEOUT 200" - ''; - }); - }; }; netnsBase = { config, pkgs, ... }: {