| 470 | : m_notifications(std::move(notifications)) {} |
| 471 | virtual ~NotificationsProxy() = default; |
| 472 | void TransactionAddedToMempool(const NewMempoolTransactionInfo& tx, uint64_t mempool_sequence) override |
| 473 | { |
| 474 | m_notifications->transactionAddedToMempool(tx.info.m_tx); |
| 475 | } |
| 476 | void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t mempool_sequence) override |
| 477 | { |
| 478 | m_notifications->transactionRemovedFromMempool(tx, reason); |
nothing calls this directly
no test coverage detected