diff --git a/src/bench/mempool_eviction.cpp b/src/bench/mempool_eviction.cpp index 0ec7c158cc..6ad5b57ae4 100644 --- a/src/bench/mempool_eviction.cpp +++ b/src/bench/mempool_eviction.cpp @@ -16,9 +16,11 @@ static void AddTx(const CTransactionRef& tx, const CAmount& nFee, CTxMemPool& po bool spendsCoinbase = false; unsigned int sigOpCost = 4; LockPoints lp; + std::set> setPeginsSpent; pool.addUnchecked(tx->GetHash(), CTxMemPoolEntry( tx, nFee, nTime, nHeight, - spendsCoinbase, sigOpCost, lp)); + spendsCoinbase, sigOpCost, lp, + setPeginsSpent)); } // Right now this is only testing eviction performance in an extremely small diff --git a/src/consensus/tx_verify.cpp b/src/consensus/tx_verify.cpp index fb07f472a0..5bdd2cf69f 100644 --- a/src/consensus/tx_verify.cpp +++ b/src/consensus/tx_verify.cpp @@ -8,6 +8,7 @@ #include #include