diff options
Diffstat (limited to 'src/bench/block_assemble.cpp')
-rw-r--r-- | src/bench/block_assemble.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/bench/block_assemble.cpp b/src/bench/block_assemble.cpp index ba8ec16119..4005701cae 100644 --- a/src/bench/block_assemble.cpp +++ b/src/bench/block_assemble.cpp @@ -3,17 +3,21 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <bench/bench.h> -#include <consensus/validation.h> -#include <crypto/sha256.h> +#include <consensus/consensus.h> #include <node/miner.h> +#include <primitives/transaction.h> #include <random.h> +#include <script/script.h> +#include <sync.h> #include <test/util/mining.h> #include <test/util/script.h> #include <test/util/setup_common.h> -#include <txmempool.h> #include <validation.h> - +#include <array> +#include <cassert> +#include <cstddef> +#include <memory> #include <vector> static void AssembleBlock(benchmark::Bench& bench) |