bench: Add missing pow.h header
Fix a build error introduced in #13219. ``` .../bitcoin/src/bench/block_assemble.cpp:42:13:error: use of undeclared identifier 'CheckProofOfWork' while (!CheckProofOfWork(block->GetHash(), block->nBits, Params().GetConsensus())) { ```
This commit is contained in:
parent
868cf431be
commit
cec84c2f1a
1 changed files with 1 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <consensus/validation.h>
|
||||
#include <miner.h>
|
||||
#include <policy/policy.h>
|
||||
#include <pow.h>
|
||||
#include <scheduler.h>
|
||||
#include <txdb.h>
|
||||
#include <txmempool.h>
|
||||
|
|
Loading…
Reference in a new issue