| 478 | m_notifications->transactionRemovedFromMempool(tx, reason); |
| 479 | } |
| 480 | void BlockConnected(const ChainstateRole& role, const std::shared_ptr<const CBlock>& block, const CBlockIndex* index) override |
| 481 | { |
| 482 | m_notifications->blockConnected(role, kernel::MakeBlockInfo(index, block.get())); |
| 483 | } |
| 484 | void BlockDisconnected(const std::shared_ptr<const CBlock>& block, const CBlockIndex* index) override |
| 485 | { |
| 486 | m_notifications->blockDisconnected(kernel::MakeBlockInfo(index, block.get())); |
nothing calls this directly
no test coverage detected