mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Switch CTxMempool::mapTx to use a hash index for txids
This commit is contained in:
@@ -17,6 +17,7 @@
|
|||||||
#undef foreach
|
#undef foreach
|
||||||
#include "boost/multi_index_container.hpp"
|
#include "boost/multi_index_container.hpp"
|
||||||
#include "boost/multi_index/ordered_index.hpp"
|
#include "boost/multi_index/ordered_index.hpp"
|
||||||
|
#include "boost/multi_index/hashed_index.hpp"
|
||||||
|
|
||||||
class CAutoFile;
|
class CAutoFile;
|
||||||
class CBlockIndex;
|
class CBlockIndex;
|
||||||
@@ -422,7 +423,7 @@ public:
|
|||||||
CTxMemPoolEntry,
|
CTxMemPoolEntry,
|
||||||
boost::multi_index::indexed_by<
|
boost::multi_index::indexed_by<
|
||||||
// sorted by txid
|
// sorted by txid
|
||||||
boost::multi_index::ordered_unique<mempoolentry_txid>,
|
boost::multi_index::hashed_unique<mempoolentry_txid, SaltedTxidHasher>,
|
||||||
// sorted by fee rate
|
// sorted by fee rate
|
||||||
boost::multi_index::ordered_non_unique<
|
boost::multi_index::ordered_non_unique<
|
||||||
boost::multi_index::tag<descendant_score>,
|
boost::multi_index::tag<descendant_score>,
|
||||||
|
|||||||
Reference in New Issue
Block a user