Bitcoin ABC 0.31.0
P2P Digital Currency
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
txmempool.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2016 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_TXMEMPOOL_H
7#define BITCOIN_TXMEMPOOL_H
8
9#include <coins.h>
10#include <consensus/amount.h>
11#include <core_memusage.h>
12#include <indirectmap.h>
13#include <kernel/cs_main.h>
16#include <node/blockfitter.h>
17#include <policy/packages.h>
19#include <radix.h>
20#include <sync.h>
21#include <txconflicting.h>
22#include <txorphanage.h>
23#include <uint256radixkey.h>
24#include <util/hasher.h>
25
26#include <boost/multi_index/hashed_index.hpp>
27#include <boost/multi_index/ordered_index.hpp>
28#include <boost/multi_index/sequenced_index.hpp>
29#include <boost/multi_index_container.hpp>
30
31#include <atomic>
32#include <map>
33#include <memory>
34#include <optional>
35#include <set>
36#include <string>
37#include <unordered_map>
38#include <utility>
39#include <vector>
40
41class CChain;
42class Chainstate;
44class Config;
45
50static const uint32_t MEMPOOL_HEIGHT = 0x7FFFFFFF;
51
52// extracts a transaction id from CTxMemPoolEntry or CTransactionRef
55
57 return entry->GetTx().GetId();
58 }
59
61 return tx->GetId();
62 }
63};
64
70 return entry.GetSharedTx()->GetId();
71 }
72};
73
74// used by the entry_time index
77 const CTxMemPoolEntryRef &b) const {
78 return a->GetTime() < b->GetTime();
79 }
80};
81
82// used by the entry_id index
85 const CTxMemPoolEntryRef &b) const {
86 return a->GetEntryId() < b->GetEntryId();
87 }
88};
89
97 // Used in tests
98 bool operator()(const CTxMemPoolEntry &a, const CTxMemPoolEntry &b) const {
99 const CFeeRate frA = a.GetModifiedFeeRate();
100 const CFeeRate frB = b.GetModifiedFeeRate();
101
102 // Sort by modified fee rate first
103 if (frA != frB) {
104 return frA > frB;
105 }
106
107 // Ties are broken by whichever is topologically earlier
108 // (this helps mining code avoid some backtracking).
109 if (a.GetEntryId() != b.GetEntryId()) {
110 return a.GetEntryId() < b.GetEntryId();
111 }
112
113 // If nothing else, sort by txid (this should never happen as entryID is
114 // expected to be unique).
115 return a.GetSharedTx()->GetId() < b.GetSharedTx()->GetId();
116 }
117
119 const CTxMemPoolEntryRef &b) const {
120 return operator()(*a, *b);
121 }
122};
123
124// Multi_index tag names
125struct entry_time {};
127struct entry_id {};
128
135
137 std::chrono::seconds m_time;
138
141
143 size_t vsize;
144
147};
148
155 EXPIRY,
157 SIZELIMIT,
159 REORG,
161 BLOCK,
163 CONFLICT,
165 AVALANCHE,
166};
167
168const std::string RemovalReasonToString(const MemPoolRemovalReason &r) noexcept;
169
215private:
217 const int m_check_ratio;
219 std::atomic<uint32_t> nTransactionsUpdated{0};
220
222 uint64_t totalTxSize GUARDED_BY(cs);
224 node::BlockFitter m_finalizedTxsFitter GUARDED_BY(cs);
226 Amount m_total_fee GUARDED_BY(cs);
229 uint64_t cachedInnerUsage GUARDED_BY(cs);
230
231 mutable int64_t lastRollingFeeUpdate GUARDED_BY(cs);
232 mutable bool blockSinceLastRollingFeeBump GUARDED_BY(cs);
234 mutable double rollingMinimumFeeRate GUARDED_BY(cs);
235
236 // In-memory counter for external mempool tracking purposes.
237 // This number is incremented once every time a transaction
238 // is added or removed from the mempool for any reason.
239 mutable uint64_t m_sequence_number GUARDED_BY(cs){1};
240
242
243 bool m_load_tried GUARDED_BY(cs){false};
244
247 uint64_t nextEntryId GUARDED_BY(cs) = 1;
248
251 std::unique_ptr<TxOrphanage> m_orphanage GUARDED_BY(cs_orphanage);
252
255 std::unique_ptr<TxConflicting> m_conflicting GUARDED_BY(cs_conflicting);
256
257public:
258 // public only for testing
259 static const int ROLLING_FEE_HALFLIFE = 60 * 60 * 12;
260
261 typedef boost::multi_index_container<
263 boost::multi_index::indexed_by<
264 // indexed by txid
265 boost::multi_index::hashed_unique<mempoolentry_txid,
267 // sorted by fee rate
268 boost::multi_index::ordered_non_unique<
269 boost::multi_index::tag<modified_feerate>,
270 boost::multi_index::identity<CTxMemPoolEntryRef>,
272 // sorted by entry time
273 boost::multi_index::ordered_non_unique<
274 boost::multi_index::tag<entry_time>,
275 boost::multi_index::identity<CTxMemPoolEntryRef>,
277 // sorted topologically (insertion order)
278 boost::multi_index::ordered_unique<
279 boost::multi_index::tag<entry_id>,
280 boost::multi_index::identity<CTxMemPoolEntryRef>,
283
312
313 using txiter = indexed_transaction_set::nth_index<0>::type::const_iterator;
314 typedef std::set<txiter, CompareIteratorById> setEntries;
315 typedef std::set<txiter, CompareIteratorByRevEntryId> setRevTopoEntries;
316
318
319private:
320 void UpdateParent(txiter entry, txiter parent, bool add)
322 void UpdateChild(txiter entry, txiter child, bool add)
324
329 std::set<TxId> m_unbroadcast_txids GUARDED_BY(cs);
330
337 bool CalculateAncestors(setEntries &setAncestors,
338 CTxMemPoolEntry::Parents &staged_ancestors) const
340
341public:
343 std::map<TxId, Amount> mapDeltas GUARDED_BY(cs);
344
346
347 const int64_t m_max_size_bytes;
348 const std::chrono::seconds m_expiry;
352 const std::optional<unsigned> m_max_datacarrier_bytes;
354
361 CTxMemPool(const Config &config, const Options &opts);
362 ~CTxMemPool();
363
370 void check(const CCoinsViewCache &active_coins_tip,
371 int64_t spendheight) const EXCLUSIVE_LOCKS_REQUIRED(::cs_main);
372
373 // addUnchecked must update state for all parents of a given transaction,
374 // updating child links as necessary.
377
378 void removeRecursive(const CTransaction &tx, MemPoolRemovalReason reason)
380 void removeConflicts(const CTransaction &tx) EXCLUSIVE_LOCKS_REQUIRED(cs);
382 void removeForFinalizedBlock(const std::vector<CTransactionRef> &vtx)
384
385 void clear();
386 // lock free
388 bool CompareTopologically(const TxId &txida, const TxId &txidb) const;
389 void getAllTxIds(std::vector<TxId> &vtxid) const;
390 bool isSpent(const COutPoint &outpoint) const;
391 unsigned int GetTransactionsUpdated() const;
392 void AddTransactionsUpdated(unsigned int n);
398 bool HasNoInputsOf(const CTransaction &tx) const
400
402 void PrioritiseTransaction(const TxId &txid, const Amount nFeeDelta);
403 void ApplyDelta(const TxId &txid, Amount &nFeeDelta) const
406
408 CTransactionRef GetConflictTx(const COutPoint &prevout) const
410
412 std::optional<txiter> GetIter(const TxId &txid) const
414
419 setEntries GetIterSet(const std::set<TxId> &txids) const
421
427 void RemoveStaged(const setEntries &stage, MemPoolRemovalReason reason)
429
438 setEntries &setAncestors,
439 bool fSearchForParents = true) const
441
447 void CalculateDescendants(txiter it, setEntries &setDescendants) const
449
455 CFeeRate GetMinFee(size_t sizelimit) const;
456
463 void TrimToSize(size_t sizelimit,
464 std::vector<COutPoint> *pvNoSpendsRemaining = nullptr)
466
471 int Expire(std::chrono::seconds time) EXCLUSIVE_LOCKS_REQUIRED(cs);
472
476 void LimitSize(CCoinsViewCache &coins_cache)
478
483 bool GetLoadTried() const;
484
489 void SetLoadTried(bool load_tried);
490
491 unsigned long size() const {
492 LOCK(cs);
493 return mapTx.size();
494 }
495
498 return totalTxSize;
499 }
500
503 return m_finalizedTxsFitter.nBlockSize -
505 }
506
509 return m_finalizedTxsFitter.nBlockSigChecks -
511 }
512
513 bool isWorthPolling(const CTransactionRef &tx) const
515
518 return m_total_fee;
519 }
520
521 bool exists(const TxId &txid) const {
522 LOCK(cs);
523 return mapTx.count(txid) != 0;
524 }
525
527 std::vector<TxId> &finalizedTxIds)
529
530 bool isAvalancheFinalized(const TxId &txid) const {
531 LOCK(cs);
532 return finalizedTxs.get(txid) != nullptr;
533 }
534
535 CTransactionRef get(const TxId &txid) const;
536 TxMempoolInfo info(const TxId &txid) const;
537 std::vector<TxMempoolInfo> infoAll() const;
538
539 CFeeRate estimateFee() const;
540
541 size_t DynamicMemoryUsage() const;
542
544 void AddUnbroadcastTx(const TxId &txid) {
545 LOCK(cs);
546 // Sanity check the transaction is in the mempool & insert into
547 // unbroadcast set.
548 if (exists(txid)) {
549 m_unbroadcast_txids.insert(txid);
550 }
551 }
552
554 void RemoveUnbroadcastTx(const TxId &txid, const bool unchecked = false);
555
557 std::set<TxId> GetUnbroadcastTxs() const {
558 LOCK(cs);
559 return m_unbroadcast_txids;
560 }
561
565 return (m_unbroadcast_txids.count(txid) != 0);
566 }
567
570 return m_sequence_number++;
571 }
572
574 return m_sequence_number;
575 }
576
577 template <typename Callable>
578 auto withOrphanage(Callable &&func) const
581 assert(m_orphanage);
582 return func(*m_orphanage);
583 }
584
585 template <typename Callable>
586 auto withConflicting(Callable &&func) const
589 assert(m_conflicting);
590 return func(*m_conflicting);
591 }
592
593private:
595 void UpdateEntryForAncestors(txiter it, const setEntries *setAncestors)
605 void UpdateForRemoveFromMempool(const setEntries &entriesToRemove)
609
620};
621
641 std::unordered_map<COutPoint, Coin, SaltedOutpointHasher> m_temp_added;
642
648 mutable std::unordered_set<COutPoint, SaltedOutpointHasher>
650
651protected:
653
654public:
655 CCoinsViewMemPool(CCoinsView *baseIn, const CTxMemPool &mempoolIn);
660 bool GetCoin(const COutPoint &outpoint, Coin &coin) const override;
668 std::unordered_set<COutPoint, SaltedOutpointHasher>
670 return m_non_base_coins;
671 }
673 void Reset();
674};
675
676#endif // BITCOIN_TXMEMPOOL_H
An in-memory indexed chain of blocks.
Definition: chain.h:134
CCoinsView backed by another CCoinsView.
Definition: coins.h:201
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Definition: coins.h:221
Abstract view on the open txout dataset.
Definition: coins.h:163
CCoinsView that brings transactions from a mempool into view.
Definition: txmempool.h:635
bool GetCoin(const COutPoint &outpoint, Coin &coin) const override
GetCoin, returning whether it exists and is not spent.
Definition: txmempool.cpp:675
std::unordered_set< COutPoint, SaltedOutpointHasher > GetNonBaseCoins() const
Get all coins in m_non_base_coins.
Definition: txmempool.h:669
void Reset()
Clear m_temp_added and m_non_base_coins.
Definition: txmempool.cpp:706
std::unordered_map< COutPoint, Coin, SaltedOutpointHasher > m_temp_added
Coins made available by transactions being validated.
Definition: txmempool.h:641
CCoinsViewMemPool(CCoinsView *baseIn, const CTxMemPool &mempoolIn)
Definition: txmempool.cpp:671
std::unordered_set< COutPoint, SaltedOutpointHasher > m_non_base_coins
Set of all coins that have been fetched from mempool or created using PackageAddTransaction (not base...
Definition: txmempool.h:649
void PackageAddTransaction(const CTransactionRef &tx)
Add the coins created by this transaction.
Definition: txmempool.cpp:699
const CTxMemPool & mempool
Definition: txmempool.h:652
Fee rate in satoshis per kilobyte: Amount / kB.
Definition: feerate.h:21
CTxMemPoolEntry stores data about the corresponding transaction, as well as data about all in-mempool...
Definition: mempool_entry.h:65
uint64_t GetEntryId() const
CTransactionRef GetSharedTx() const
CFeeRate GetModifiedFeeRate() const
std::set< std::reference_wrapper< const CTxMemPoolEntryRef >, CompareIteratorById > Parents
Definition: mempool_entry.h:70
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:214
void removeConflicts(const CTransaction &tx) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:299
bool isAvalancheFinalized(const TxId &txid) const
Definition: txmempool.h:530
CFeeRate estimateFee() const
Definition: txmempool.cpp:593
uint64_t nextEntryId GUARDED_BY(cs)
Used by addUnchecked to generate ever-increasing CTxMemPoolEntry::entryId's.
bool HasNoInputsOf(const CTransaction &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Check that none of this transactions inputs are in the mempool, and thus the tx is not dependent on o...
Definition: txmempool.cpp:661
void ClearPrioritisation(const TxId &txid) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:631
std::set< txiter, CompareIteratorById > setEntries
Definition: txmempool.h:314
const bool m_require_standard
Definition: txmempool.h:353
void RemoveUnbroadcastTx(const TxId &txid, const bool unchecked=false)
Removes a transaction from the unbroadcast set.
Definition: txmempool.cpp:722
uint64_t cachedInnerUsage GUARDED_BY(cs)
sum of dynamic memory usage of all the map elements (NOT the maps themselves)
Amount m_total_fee GUARDED_BY(cs)
sum of all mempool tx's fees (NOT modified fee)
bool GetLoadTried() const
Definition: txmempool.cpp:876
bool CalculateAncestors(setEntries &setAncestors, CTxMemPoolEntry::Parents &staged_ancestors) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Helper function to calculate all in-mempool ancestors of staged_ancestors param@[in] staged_ancestors...
Definition: txmempool.cpp:30
void updateFeeForBlock() EXCLUSIVE_LOCKS_REQUIRED(cs)
Called when a block is connected.
Definition: txmempool.cpp:317
void UpdateEntryForAncestors(txiter it, const setEntries *setAncestors) EXCLUSIVE_LOCKS_REQUIRED(cs)
Set ancestor state for an entry.
CFeeRate GetMinFee() const
The minimum fee to get into the mempool, which may itself not be enough for larger-sized transactions...
Definition: txmempool.h:454
RecursiveMutex cs
This mutex needs to be locked when accessing mapTx or other members that are guarded by it.
Definition: txmempool.h:310
void trackPackageRemoved(const CFeeRate &rate) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:823
Amount GetTotalFee() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.h:516
void removeRecursive(const CTransaction &tx, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:268
void UpdateForRemoveFromMempool(const setEntries &entriesToRemove) EXCLUSIVE_LOCKS_REQUIRED(cs)
For each transaction being removed, update ancestors and any direct children.
Definition: txmempool.cpp:102
bool blockSinceLastRollingFeeBump GUARDED_BY(cs)
const int m_check_ratio
Value n means that 1 times in n we check.
Definition: txmempool.h:217
void TrimToSize(size_t sizelimit, std::vector< COutPoint > *pvNoSpendsRemaining=nullptr) EXCLUSIVE_LOCKS_REQUIRED(cs)
Remove transactions from the mempool until its dynamic size is <= sizelimit.
Definition: txmempool.cpp:831
const std::chrono::seconds m_expiry
Definition: txmempool.h:348
const std::optional< unsigned > m_max_datacarrier_bytes
Definition: txmempool.h:352
void AddTransactionsUpdated(unsigned int n)
Definition: txmempool.cpp:144
void UpdateChildrenForRemoval(txiter entry) EXCLUSIVE_LOCKS_REQUIRED(cs)
Sever link between specified transaction and direct children.
Definition: txmempool.cpp:92
uint64_t GetTotalFinalizedTxSigchecks() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.h:507
bool CompareTopologically(const TxId &txida, const TxId &txidb) const
Definition: txmempool.cpp:472
TxMempoolInfo info(const TxId &txid) const
Definition: txmempool.cpp:583
std::map< TxId, Amount > mapDeltas GUARDED_BY(cs)
const int64_t m_max_size_bytes
Definition: txmempool.h:347
void getAllTxIds(std::vector< TxId > &vtxid) const
Definition: txmempool.cpp:486
std::atomic< uint32_t > nTransactionsUpdated
Used by getblocktemplate to trigger CreateNewBlock() invocation.
Definition: txmempool.h:219
setEntries GetIterSet(const std::set< TxId > &txids) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Translate a set of txids into a set of pool iterators to avoid repeated lookups.
Definition: txmempool.cpp:650
std::unique_ptr< TxConflicting > m_conflicting GUARDED_BY(cs_conflicting)
Storage for conflicting txs information.
size_t DynamicMemoryUsage() const
Definition: txmempool.cpp:711
std::vector< TxMempoolInfo > infoAll() const
Definition: txmempool.cpp:504
indexed_transaction_set mapTx GUARDED_BY(cs)
void LimitSize(CCoinsViewCache &coins_cache) EXCLUSIVE_LOCKS_REQUIRED(cs
Reduce the size of the mempool by expiring and then trimming the mempool.
Definition: txmempool.cpp:764
void UpdateParent(txiter entry, txiter parent, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:790
bool setAvalancheFinalized(const CTxMemPoolEntryRef &tx, std::vector< TxId > &finalizedTxIds) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:518
CTransactionRef GetConflictTx(const COutPoint &prevout) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Get the transaction in the pool that spends the same prevout.
Definition: txmempool.cpp:636
void removeUnchecked(txiter entry, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
Before calling removeUnchecked for a given transaction, UpdateForRemoveFromMempool must be called on ...
Definition: txmempool.cpp:196
uint64_t totalTxSize GUARDED_BY(cs)
sum of all mempool tx's sizes.
int Expire(std::chrono::seconds time) EXCLUSIVE_LOCKS_REQUIRED(cs)
Expire all transaction (and their dependencies) in the mempool older than time.
Definition: txmempool.cpp:745
void clear()
Definition: txmempool.cpp:353
bool isWorthPolling(const CTransactionRef &tx) const EXCLUSIVE_LOCKS_REQUIRED(cs
Definition: txmempool.cpp:554
std::set< txiter, CompareIteratorByRevEntryId > setRevTopoEntries
Definition: txmempool.h:315
bool exists(const TxId &txid) const
Definition: txmempool.h:521
std::set< TxId > GetUnbroadcastTxs() const
Returns transactions in unbroadcast set.
Definition: txmempool.h:557
node::BlockFitter m_finalizedTxsFitter GUARDED_BY(cs)
Check whether the finalized txs would fit a block.
int64_t lastRollingFeeUpdate GUARDED_BY(cs)
const bool m_permit_bare_multisig
Definition: txmempool.h:351
bool m_load_tried GUARDED_BY(cs)
Definition: txmempool.h:243
static const int ROLLING_FEE_HALFLIFE
Definition: txmempool.h:259
auto withOrphanage(Callable &&func) const EXCLUSIVE_LOCKS_REQUIRED(!cs_orphanage)
Definition: txmempool.h:578
CTransactionRef get(const TxId &txid) const
Definition: txmempool.cpp:573
boost::multi_index_container< CTxMemPoolEntryRef, boost::multi_index::indexed_by< boost::multi_index::hashed_unique< mempoolentry_txid, SaltedTxIdHasher >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< modified_feerate >, boost::multi_index::identity< CTxMemPoolEntryRef >, CompareTxMemPoolEntryByModifiedFeeRate >, boost::multi_index::ordered_non_unique< boost::multi_index::tag< entry_time >, boost::multi_index::identity< CTxMemPoolEntryRef >, CompareTxMemPoolEntryByEntryTime >, boost::multi_index::ordered_unique< boost::multi_index::tag< entry_id >, boost::multi_index::identity< CTxMemPoolEntryRef >, CompareTxMemPoolEntryByEntryId > > > indexed_transaction_set
Definition: txmempool.h:282
const CFeeRate m_min_relay_feerate
Definition: txmempool.h:349
void PrioritiseTransaction(const TxId &txid, const Amount nFeeDelta)
Affect CreateNewBlock prioritisation of transactions.
Definition: txmempool.cpp:603
uint64_t GetSequence() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.h:573
bool IsUnbroadcastTx(const TxId &txid) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Returns whether a txid is in the unbroadcast set.
Definition: txmempool.h:563
indexed_transaction_set::nth_index< 0 >::type::const_iterator txiter
Definition: txmempool.h:313
uint64_t GetAndIncrementSequence() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Guards this internal counter for external reporting.
Definition: txmempool.h:569
void UpdateChild(txiter entry, txiter child, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:780
void check(const CCoinsViewCache &active_coins_tip, int64_t spendheight) const EXCLUSIVE_LOCKS_REQUIRED(void addUnchecked(CTxMemPoolEntryRef entry) EXCLUSIVE_LOCKS_REQUIRED(cs
If sanity-checking is turned on, check makes sure the pool is consistent (does not contain two transa...
Definition: txmempool.h:375
Mutex cs_orphanage
Definition: txmempool.h:249
RadixTree< CTxMemPoolEntry, MemPoolEntryRadixTreeAdapter > finalizedTxs
Definition: txmempool.h:317
void check(const CCoinsViewCache &active_coins_tip, int64_t spendheight) const EXCLUSIVE_LOCKS_REQUIRED(void cs_main
Definition: txmempool.h:376
double rollingMinimumFeeRate GUARDED_BY(cs)
minimum fee to get into the pool, decreases exponentially
std::unique_ptr< TxOrphanage > m_orphanage GUARDED_BY(cs_orphanage)
Storage for orphan information.
auto withConflicting(Callable &&func) const EXCLUSIVE_LOCKS_REQUIRED(!cs_conflicting)
Definition: txmempool.h:586
indirectmap< COutPoint, CTransactionRef > mapNextTx GUARDED_BY(cs)
bool CalculateMemPoolAncestors(const CTxMemPoolEntryRef &entry, setEntries &setAncestors, bool fSearchForParents=true) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Try to calculate all in-mempool ancestors of entry.
Definition: txmempool.cpp:57
void removeForFinalizedBlock(const std::vector< CTransactionRef > &vtx) EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:324
Mutex cs_conflicting
Definition: txmempool.h:253
uint64_t GetTotalFinalizedTxSize() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.h:501
void CalculateDescendants(txiter it, setEntries &setDescendants) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Populate setDescendants with all in-mempool descendants of hash.
Definition: txmempool.cpp:241
void RemoveStaged(const setEntries &stage, MemPoolRemovalReason reason) EXCLUSIVE_LOCKS_REQUIRED(cs)
Remove a set of transactions from the mempool.
Definition: txmempool.cpp:733
unsigned long size() const
Definition: txmempool.h:491
CTxMemPool(const Config &config, const Options &opts)
Create a new CTxMemPool.
Definition: txmempool.cpp:118
void UpdateParentsOf(bool add, txiter it) EXCLUSIVE_LOCKS_REQUIRED(cs)
Update parents of it to add/remove it as a child transaction.
Definition: txmempool.cpp:83
uint64_t m_sequence_number GUARDED_BY(cs)
Definition: txmempool.h:239
void ApplyDelta(const TxId &txid, Amount &nFeeDelta) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:621
void SetLoadTried(bool load_tried)
Set whether or not we've made an attempt to load the mempool (regardless of whether the attempt was s...
Definition: txmempool.cpp:881
const CFeeRate m_dust_relay_feerate
Definition: txmempool.h:350
std::optional< txiter > GetIter(const TxId &txid) const EXCLUSIVE_LOCKS_REQUIRED(cs)
Returns an iterator to the given txid, if found.
Definition: txmempool.cpp:641
std::set< TxId > m_unbroadcast_txids GUARDED_BY(cs)
Track locally submitted transactions to periodically retry initial broadcast.
uint64_t GetTotalTxSize() const EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.h:496
bool isSpent(const COutPoint &outpoint) const
Definition: txmempool.cpp:135
void AddUnbroadcastTx(const TxId &txid)
Adds a transaction to the unbroadcast set.
Definition: txmempool.h:544
unsigned int GetTransactionsUpdated() const
Definition: txmempool.cpp:140
void _clear() EXCLUSIVE_LOCKS_REQUIRED(cs)
Definition: txmempool.cpp:341
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:700
Provides an interface for creating and interacting with one or two chainstates: an IBD chainstate gen...
Definition: validation.h:1147
A UTXO entry.
Definition: coins.h:28
Definition: config.h:19
Definition: rcu.h:85
Map whose keys are pointers, but are compared by their dereferenced values.
Definition: indirectmap.h:26
Check for block limits when adding transactions.
Definition: blockfitter.h:17
static constexpr uint64_t COINBASE_RESERVED_SIGCHECKS
Definition: blockfitter.h:25
static constexpr uint64_t COINBASE_RESERVED_SIZE
Definition: blockfitter.h:24
RCUPtr< CTxMemPoolEntry > CTxMemPoolEntryRef
Definition: mempool_entry.h:56
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:259
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:315
Definition: amount.h:19
Definition: txmempool.h:83
bool operator()(const CTxMemPoolEntryRef &a, const CTxMemPoolEntryRef &b) const
Definition: txmempool.h:84
Definition: txmempool.h:75
bool operator()(const CTxMemPoolEntryRef &a, const CTxMemPoolEntryRef &b) const
Definition: txmempool.h:76
Sort by feerate of entry (modfee/vsize) in descending order.
Definition: txmempool.h:96
bool operator()(const CTxMemPoolEntry &a, const CTxMemPoolEntry &b) const
Definition: txmempool.h:98
bool operator()(const CTxMemPoolEntryRef &a, const CTxMemPoolEntryRef &b) const
Definition: txmempool.h:118
Radix tree adapter for storing a CTxMemPoolEntry as a tree element.
Definition: txmempool.h:68
Uint256RadixKey getId(const CTxMemPoolEntry &entry) const
Definition: txmempool.h:69
RCUPtr< T > get(const KeyType &key)
Get the value corresponding to a key.
Definition: radix.h:118
A TxId is the identifier of a transaction.
Definition: txid.h:14
Information about a mempool transaction.
Definition: txmempool.h:132
Amount fee
Fee of the transaction.
Definition: txmempool.h:140
Amount nFeeDelta
The fee delta.
Definition: txmempool.h:146
CTransactionRef tx
The transaction itself.
Definition: txmempool.h:134
std::chrono::seconds m_time
Time the transaction entered the mempool.
Definition: txmempool.h:137
size_t vsize
Virtual size of the transaction.
Definition: txmempool.h:143
Facility for using an uint256 as a radix tree key.
Options struct containing options for constructing a CTxMemPool.
result_type operator()(const CTxMemPoolEntryRef &entry) const
Definition: txmempool.h:56
result_type operator()(const CTransactionRef &tx) const
Definition: txmempool.h:60
#define LOCK(cs)
Definition: sync.h:306
#define EXCLUSIVE_LOCKS_REQUIRED(...)
Definition: threadsafety.h:56
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
Definition: txmempool.h:153
@ SIZELIMIT
Removed in size limiting.
@ EXPIRY
Expired from mempool.
@ CONFLICT
Removed for conflict with in-block transaction.
@ REORG
Removed for reorganization.
static const uint32_t MEMPOOL_HEIGHT
Fake height value used in Coins to signify they are only in the memory pool(since 0....
Definition: txmempool.h:50
const std::string RemovalReasonToString(const MemPoolRemovalReason &r) noexcept
Definition: txmempool.cpp:887
AssertLockHeld(pool.cs)
assert(!tx.IsCoinBase())