25 const int64_t time = fuzzed_data_provider.ConsumeIntegral<int64_t>();
26 const uint64_t entry_sequence{fuzzed_data_provider.ConsumeIntegral<uint64_t>()};
27 const auto entry_height{fuzzed_data_provider.ConsumeIntegralInRange<uint32_t>(0, max_height)};
28 const bool spends_coinbase = fuzzed_data_provider.ConsumeBool();
29 const unsigned int sig_op_cost = fuzzed_data_provider.ConsumeIntegralInRange<
unsigned int>(0,
MAX_BLOCK_SIGOPS_COST);
CTxMemPoolEntry stores data about the corresponding transaction, as well as data about all in-mempool...