CTxMemPool::check

If sanity-checking is turned on, check makes sure the pool is consistent (does not contain two transactions that spend the same inputs, all inputs are in the mapNextTx array). If sanity-checking is turned off, check does nothing.

Synopsis

Declared in <txmempool.h>

[[requires_capability(0x7fbc8f6836d8), requires_capability(0x7fbc95d45438), requires_capability(0x7fbca708b0f8), requires_capability(0x7fbc86273998), requires_capability(0x7fbca7898078), requires_capability(0x7fbc84ab96c8), requires_capability(0x7fbc870f8bc8), requires_capability(0x7fbc921e0488)]]
void
check(
    CCoinsViewCache const& active_coins_tip,
    int64_t spendheight) const;

Parameters

NameDescription
active_coins_tipThe coins view of the current chain tip.
spendheightThe height at which mempool transactions would be spent.