diff options
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index f65fb24f19..a0d9e2a6bf 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -672,7 +672,7 @@ void CTxMemPool::clear() _clear(); } -void CTxMemPool::check(CChainState& active_chainstate) const +void CTxMemPool::check(const CCoinsViewCache& active_coins_tip, int64_t spendheight) const { if (m_check_ratio == 0) return; @@ -687,9 +687,7 @@ void CTxMemPool::check(CChainState& active_chainstate) const uint64_t innerUsage = 0; uint64_t prev_ancestor_count{0}; - CCoinsViewCache& active_coins_tip = active_chainstate.CoinsTip(); CCoinsViewCache mempoolDuplicate(const_cast<CCoinsViewCache*>(&active_coins_tip)); - const int64_t spendheight = active_chainstate.m_chain.Height() + 1; for (const auto& it : GetSortedDepthAndScore()) { checkTotal += it->GetTxSize(); |