| 1140 | } |
| 1141 | |
| 1142 | void CTxMemPool::RemoveUnbroadcastTx(const uint256& txid, const bool unchecked) { |
| 1143 | LOCK(cs); |
| 1144 | |
| 1145 | if (m_unbroadcast_txids.erase(txid)) |
| 1146 | { |
| 1147 | LogPrint(BCLog::MEMPOOL, "Removed %i from set of unbroadcast txns%s\n", txid.GetHex(), (unchecked ? " before confirmation that txn was sent out" : "")); |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | void CTxMemPool::RemoveStaged(setEntries &stage, bool updateDescendants, MemPoolRemovalReason reason) { |
| 1152 | AssertLockHeld(cs); |
no test coverage detected