diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-29 13:33:27 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-05-29 13:26:31 +0200 |
commit | fa5680b7520c340952239c4e25ebe505d16c7c39 (patch) | |
tree | 8fe330aef4e31ce289089ef1453891e63cfa9395 /src/txdb.h | |
parent | dddde27f6fbcff7cdb31f7138efc5d8363537b03 (diff) |
fix includes for touched header files (iwyu)
Diffstat (limited to 'src/txdb.h')
-rw-r--r-- | src/txdb.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h index c65101618c..04d0ecb39f 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -13,6 +13,9 @@ #include <util/fs.h> #include <util/result.h> +#include <cstddef> +#include <cstdint> +#include <functional> #include <memory> #include <optional> #include <string> @@ -21,11 +24,11 @@ class CBlockFileInfo; class CBlockIndex; +class COutPoint; class uint256; namespace Consensus { struct Params; }; -struct bilingual_str; //! -dbcache default (MiB) static const int64_t nDefaultDbCache = 450; |