From efbaff9d89080d8ad4339fdebe64f261ccdc3c64 Mon Sep 17 00:00:00 2001 From: Duke Date: Tue, 30 Dec 2025 02:37:40 -0500 Subject: [PATCH] Wolfssl uses a typedef called 'byte' which is no longer allowed in gcc15 --- src/net.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/net.h b/src/net.h index 937f07ef1..fdc1984ce 100644 --- a/src/net.h +++ b/src/net.h @@ -51,7 +51,9 @@ #undef TFM_TIMING_RESISTANT #define ECC_TIMING_RESISTANT 420 #define TFM_TIMING_RESISTANT 420 +#define byte unsigned char #include +#undef byte class CAddrMan; class CBlockIndex;