diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-19 14:15:31 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-07-19 14:12:33 +0200 |
commit | fa77fdd0475fa15a1a3641c5d5a2bf7ad095aa84 (patch) | |
tree | b8fbfdff54f7175f8ae0d342d6a7186bbac10c32 /src/index | |
parent | fa869ce2c2b906d8b087c4e7a5f1804a74b1c522 (diff) |
Add missing includes
They are needed, otherwise the next commit will not compile
Diffstat (limited to 'src/index')
-rw-r--r-- | src/index/base.cpp | 1 | ||||
-rw-r--r-- | src/index/coinstatsindex.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/index/base.cpp b/src/index/base.cpp index 323547900d..674b5cf5bf 100644 --- a/src/index/base.cpp +++ b/src/index/base.cpp @@ -9,6 +9,7 @@ #include <shutdown.h> #include <tinyformat.h> #include <util/syscall_sandbox.h> +#include <util/system.h> #include <util/thread.h> #include <util/translation.h> #include <validation.h> // For g_chainman diff --git a/src/index/coinstatsindex.cpp b/src/index/coinstatsindex.cpp index 687e330fe0..8930214e76 100644 --- a/src/index/coinstatsindex.cpp +++ b/src/index/coinstatsindex.cpp @@ -10,6 +10,7 @@ #include <serialize.h> #include <txdb.h> #include <undo.h> +#include <util/system.h> #include <validation.h> using kernel::CCoinsStats; |