From 098f1b7a0061f29642f765776b35d7f72912c4e6 Mon Sep 17 00:00:00 2001 From: Matt Whitlock Date: Sat, 22 Aug 2026 17:09:34 -0400 Subject: [PATCH] fix two libwally-core #includes libwally-core's headers directory is present in the include search path, so its headers should not be included as #include but rather as #include . This matters when building CLN against a system-installed libwally-core, as the bundled copy in external/libwally-core might be absent. Changelog-None --- common/test/run-close_tx.c | 2 +- lightningd/test/run-close_tx_check.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/test/run-close_tx.c b/common/test/run-close_tx.c index 42a1cea40f76ffd3b2b2b547f9fb96fdcf3ef7d3..f5196d0817ac20d409005fb91f3e37cc216c8d50 100644 --- a/common/test/run-close_tx.c +++ b/common/test/run-close_tx.c @@ -7,7 +7,7 @@ #include #include #include -#include +#include #include static void test_create_simple_close_tx_basic(void) diff --git a/lightningd/test/run-close_tx_check.c b/lightningd/test/run-close_tx_check.c index 9b132647bc64e7126c2ea5eacb3bc8411e376eba..2ef9ff64551a77008274945af32ce87143e8386b 100644 --- a/lightningd/test/run-close_tx_check.c +++ b/lightningd/test/run-close_tx_check.c @@ -2,7 +2,7 @@ #include "../simple_close_control.c" #include #include -#include +#include #include /* AUTOGENERATED MOCKS START */