aboutsummaryrefslogtreecommitdiff
path: root/src/util/hasher.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-06-09 16:26:55 +0100
committerfanquake <fanquake@gmail.com>2022-07-08 11:06:01 +0100
commit07f2c25d04c39a0074e1d9ee1b24b3e359c8153f (patch)
tree167946c643c37689ecaf75756038cc88c8c43fcf /src/util/hasher.h
parenta7f3479ba3fda4c9fb29bd7080165744c02ee921 (diff)
downloadbitcoin-07f2c25d04c39a0074e1d9ee1b24b3e359c8153f.tar.xz
refactor: add most of src/util to iwyu
These files change infrequently, and not much header shuffling is required. We don't add everything in src/util/ yet, because IWYU makes some dubious suggestions, which I'm going to follow up with upstream.
Diffstat (limited to 'src/util/hasher.h')
-rw-r--r--src/util/hasher.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/hasher.h b/src/util/hasher.h
index 3d24a4d23c..426b8990e6 100644
--- a/src/util/hasher.h
+++ b/src/util/hasher.h
@@ -5,10 +5,16 @@
#ifndef BITCOIN_UTIL_HASHER_H
#define BITCOIN_UTIL_HASHER_H
+#include <crypto/common.h>
#include <crypto/siphash.h>
#include <primitives/transaction.h>
#include <uint256.h>
+#include <cstdint>
+#include <cstring>
+
+template <typename C> class Span;
+
class SaltedTxidHasher
{
private: