Merge #8796: [trivial] fix mempool comment (outdated by BIP125)
c14ffd5
[trivial] fix mempool comment (outdated by BIP125) (jonnynewbs)
This commit is contained in:
commit
8f1fbf36a7
1 changed files with 10 additions and 7 deletions
|
@ -328,14 +328,17 @@ struct TxMempoolInfo
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CTxMemPool stores valid-according-to-the-current-best-chain
|
* CTxMemPool stores valid-according-to-the-current-best-chain transactions
|
||||||
* transactions that may be included in the next block.
|
* that may be included in the next block.
|
||||||
*
|
*
|
||||||
* Transactions are added when they are seen on the network
|
* Transactions are added when they are seen on the network (or created by the
|
||||||
* (or created by the local node), but not all transactions seen
|
* local node), but not all transactions seen are added to the pool. For
|
||||||
* are added to the pool: if a new transaction double-spends
|
* example, the following new transactions will not be added to the mempool:
|
||||||
* an input of a transaction in the pool, it is dropped,
|
* - a transaction which doesn't make the mimimum fee requirements.
|
||||||
* as are non-standard transactions.
|
* - a new transaction that double-spends an input of a transaction already in
|
||||||
|
* the pool where the new transaction does not meet the Replace-By-Fee
|
||||||
|
* requirements as defined in BIP 125.
|
||||||
|
* - a non-standard transaction.
|
||||||
*
|
*
|
||||||
* CTxMemPool::mapTx, and CTxMemPoolEntry bookkeeping:
|
* CTxMemPool::mapTx, and CTxMemPoolEntry bookkeeping:
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue