| 126 | } |
| 127 | |
| 128 | void CMainSignals::MempoolEntryRemoved(CTransactionRef ptx, MemPoolRemovalReason reason) { |
| 129 | if (reason != MemPoolRemovalReason::BLOCK && reason != MemPoolRemovalReason::CONFLICT) { |
| 130 | m_internals->m_schedulerClient.AddToProcessQueue([ptx, this] { |
| 131 | m_internals->TransactionRemovedFromMempool(ptx); |
| 132 | }); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | void CMainSignals::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) { |
| 137 | // Dependencies exist that require UpdatedBlockTip events to be delivered in the order in which |
nothing calls this directly
no test coverage detected