diff options
author | TheCharlatan <seb.kung@gmail.com> | 2023-03-15 20:07:19 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-03-23 12:54:27 +0100 |
commit | 106b46d9d25b5228ef009fbbe6f9a7ae35090d15 (patch) | |
tree | e244020b6f0dc31cbd070ecfee02fe6c3522f827 /src | |
parent | b202b3dd6393b415fa68e18dc49c9431dc6b58b2 (diff) |
Add missing fs.h includes
The inclusion of this header should not depend on the inclusion of other
headers that include fs.h themselves.
Diffstat (limited to 'src')
-rw-r--r-- | src/ipc/process.h | 2 | ||||
-rw-r--r-- | src/node/chainstate.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
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 <fs.h> + #include <memory> #include <string> 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 <tinyformat.h> #include <txdb.h> #include <uint256.h> +#include <fs.h> #include <util/time.h> #include <util/translation.h> #include <validation.h> |