aboutsummaryrefslogtreecommitdiff
path: root/src/test/blockencodings_tests.cpp
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2018-05-13 23:39:53 -0700
committerBen Woosley <ben.woosley@gmail.com>2018-05-14 18:36:39 -0700
commit5b35b9276858f6841ab4b688883461f602e9f937 (patch)
tree9d602a85eb9cfb6c687ce336dcaa0e147e941c2c /src/test/blockencodings_tests.cpp
parent81c533c6f481ebf6a4f6349c05731306e3a2402f (diff)
downloadbitcoin-5b35b9276858f6841ab4b688883461f602e9f937.tar.xz
Break circular dependency: chain -> pow -> chain
chain.h does not actually depend on the methods defined in pow.h, just its include of consensus/params.h, which is standalone and can be included instead. Confirmed by inspection and successful build.
Diffstat (limited to 'src/test/blockencodings_tests.cpp')
-rw-r--r--src/test/blockencodings_tests.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/blockencodings_tests.cpp b/src/test/blockencodings_tests.cpp
index 8cffacbffe..3dd5356164 100644
--- a/src/test/blockencodings_tests.cpp
+++ b/src/test/blockencodings_tests.cpp
@@ -5,6 +5,7 @@
#include <blockencodings.h>
#include <consensus/merkle.h>
#include <chainparams.h>
+#include <pow.h>
#include <random.h>
#include <test/test_bitcoin.h>