| 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())); |
| 487 | } |
| 488 | void UpdatedBlockTip(const CBlockIndex* index, const CBlockIndex* fork_index, bool is_ibd) override |
| 489 | { |
| 490 | m_notifications->updatedBlockTip(); |
nothing calls this directly
no test coverage detected