diff options
author | Jim Posen <jim.posen@gmail.com> | 2018-08-24 14:48:23 -0700 |
---|---|---|
committer | Jim Posen <jim.posen@gmail.com> | 2018-11-05 09:25:15 -0800 |
commit | 4fb789e9b2ffdf48fd50293b3982b3fce4d5fbdf (patch) | |
tree | 24f14fbfe6b2079e3dbc0952d72477431f679535 /src/blockencodings.cpp | |
parent | 6b8d0a2164b30eab76e7bccb1ffb056a10fba406 (diff) |
Extract CSipHasher to it's own file in crypto/ directory.
This is a move-only commit with the exception of changes to includes.
Diffstat (limited to 'src/blockencodings.cpp')
-rw-r--r-- | src/blockencodings.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/blockencodings.cpp b/src/blockencodings.cpp index a06bced11b..10f51931f0 100644 --- a/src/blockencodings.cpp +++ b/src/blockencodings.cpp @@ -6,7 +6,8 @@ #include <consensus/consensus.h> #include <consensus/validation.h> #include <chainparams.h> -#include <hash.h> +#include <crypto/sha256.h> +#include <crypto/siphash.h> #include <random.h> #include <streams.h> #include <txmempool.h> |