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/node/chainstate.cpp | |
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/node/chainstate.cpp')
-rw-r--r-- | src/node/chainstate.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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> |