Switch CTxMempool::mapTx to use a hash index for txids

This commit is contained in:
Pieter Wuille 2016-05-06 21:36:36 +02:00 committed by Kris Nuttycombe
parent ec4196d8cf
commit 407532d840
1 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@
#undef foreach
#include "boost/multi_index_container.hpp"
#include "boost/multi_index/ordered_index.hpp"
#include "boost/multi_index/hashed_index.hpp"
class CAutoFile;
@ -151,7 +152,7 @@ public:
CTxMemPoolEntry,
boost::multi_index::indexed_by<
// sorted by txid
boost::multi_index::ordered_unique<mempoolentry_txid>,
boost::multi_index::hashed_unique<mempoolentry_txid, SaltedTxidHasher>,
// sorted by fee rate
boost::multi_index::ordered_non_unique<
boost::multi_index::identity<CTxMemPoolEntry>,