diff options
| author | Ben Woosley <[email protected]> | 2018-05-13 23:39:53 -0700 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-05-14 18:36:39 -0700 |
| commit | 5b35b9276858f6841ab4b688883461f602e9f937 (patch) | |
| tree | 9d602a85eb9cfb6c687ce336dcaa0e147e941c2c /src/test/blockencodings_tests.cpp | |
| parent | Merge #13158: [Qt]: Improve sendcoinsdialog readability (diff) | |
| download | discoin-5b35b9276858f6841ab4b688883461f602e9f937.tar.xz discoin-5b35b9276858f6841ab4b688883461f602e9f937.zip | |
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.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/blockencodings_tests.cpp b/src/test/blockencodings_tests.cpp index 8cffacbff..3dd535616 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> |