| 144 | } |
| 145 | |
| 146 | void CMainSignals::TransactionAddedToMempool(const CTransactionRef &ptx) { |
| 147 | m_internals->m_schedulerClient.AddToProcessQueue([ptx, this] { |
| 148 | m_internals->TransactionAddedToMempool(ptx); |
| 149 | }); |
| 150 | } |
| 151 | |
| 152 | void CMainSignals::BlockConnected(const std::shared_ptr<const CBlock> &pblock, const CBlockIndex *pindex, const std::shared_ptr<const std::vector<CTransactionRef>>& pvtxConflicted) { |
| 153 | m_internals->m_schedulerClient.AddToProcessQueue([pblock, pindex, pvtxConflicted, this] { |
nothing calls this directly
no test coverage detected