[#CTxMemPool-indexed_transaction_set] = xref:CTxMemPool.adoc[CTxMemPool]::indexed_transaction_set :relfileprefix: ../ :mrdocs: Boost multi‐index container type storing mempool entries indexed by txid, wtxid, and entry time. == Synopsis Declared in `<txmempool.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- using indexed_transaction_set = boost::multi_index_container<CTxMemPoolEntry, boost::multi_index::indexed_by<boost::multi_index::hashed_unique<mempoolentry_txid, SaltedTxidHasher>, boost::multi_index::hashed_unique<boost::multi_index::tag<index_by_wtxid>, mempoolentry_wtxid, SaltedWtxidHasher>, boost::multi_index::ordered_non_unique<boost::multi_index::tag<entry_time>, boost::multi_index::identity<CTxMemPoolEntry>, CompareTxMemPoolEntryByEntryTime>>>; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#