test: remove clightning plugin start timeout patch

Unneded because the timeout has been increased upstream:
ee3133f198
This commit is contained in:
Erik Arvstedt 2025-05-09 13:31:20 +02:00
parent 815f2cd325
commit 411b131c3a
No known key found for this signature in database
GPG key ID: 33312B944DD97846

View file

@ -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, ... }: {