From 106b46d9d25b5228ef009fbbe6f9a7ae35090d15 Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Wed, 15 Mar 2023 20:07:19 +0100 Subject: [PATCH] Add missing fs.h includes The inclusion of this header should not depend on the inclusion of other headers that include fs.h themselves. --- src/ipc/process.h | 2 ++ src/node/chainstate.cpp | 1 + 2 files changed, 3 insertions(+) diff --git a/src/ipc/process.h b/src/ipc/process.h index 4bb2930d9c..0b3b5e203f 100644 --- a/src/ipc/process.h +++ b/src/ipc/process.h @@ -5,6 +5,8 @@ #ifndef BITCOIN_IPC_PROCESS_H #define BITCOIN_IPC_PROCESS_H +#include + #include #include diff --git a/src/node/chainstate.cpp b/src/node/chainstate.cpp index cfd3472592..a756fe2508 100644 --- a/src/node/chainstate.cpp +++ b/src/node/chainstate.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include #include