fuzz/fuzz-handle_onion_message.c: fix header order.

We check this now.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2025-11-10 16:34:43 +10:30
parent 7bbaecd30e
commit b33f86bbb5
2 changed files with 8 additions and 8 deletions

View File

@@ -3,15 +3,15 @@
* from that test.
*/
#include "config.h"
#include <fcntl.h>
#include <common/blockheight_states.h>
#include <ccan/ccan/array_size/array_size.h>
#include <channeld/full_channel.h>
#include <common/blockheight_states.h>
#include <common/channel_type.h>
#include <common/fee_states.h>
#include <common/htlc_wire.h>
#include <common/setup.h>
#include <common/status.h>
#include <channeld/full_channel.h>
#include <fcntl.h>
#include <tests/fuzz/libfuzz.h>
/* MOCKS START */

View File

@@ -1,18 +1,18 @@
#include "config.h"
#include <fcntl.h>
#include <setjmp.h>
#include <secp256k1_ecdh.h>
#include <common/daemon_conn.h>
#include <common/ecdh.h>
#include <common/setup.h>
#include <common/status.h>
#include <common/wire_error.h>
#include <connectd/connectd_wiregen.h>
#include <connectd/connectd.h>
#include <connectd/connectd_wiregen.h>
#include <connectd/multiplex.h>
#include <connectd/onion_message.h>
#include <wire/peer_wiregen.h>
#include <fcntl.h>
#include <secp256k1_ecdh.h>
#include <setjmp.h>
#include <tests/fuzz/libfuzz.h>
#include <wire/peer_wiregen.h>
static int lightningd_fd;
static struct privkey priv;