From 2bf433cacb1911c0d802f1f28eac8a4a8a1285ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna=20=E2=80=9CCyberTailor=E2=80=9D?= Date: Mon, 2 Dec 2024 18:30:16 +0500 Subject: [PATCH] node: fix build with GCC 15 Add a missing include for the uint32_t type Bug: https://bugs.gentoo.org/945705 --- src/node/ui_interface.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node/ui_interface.h b/src/node/ui_interface.h index 6a2aa852be..bbf16efad0 100644 --- a/src/node/ui_interface.h +++ b/src/node/ui_interface.h @@ -1,12 +1,13 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2012-2020 The Bitcoin developers -// Copyright (c) 2014-2022 The Gridcoin developers +// Copyright (c) 2014-2024 The Gridcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or https://opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NODE_UI_INTERFACE_H #define BITCOIN_NODE_UI_INTERFACE_H +#include #include #include #include