| 156 | } |
| 157 | |
| 158 | void CMainSignals::BlockDisconnected(const std::shared_ptr<const CBlock> &pblock) { |
| 159 | m_internals->m_schedulerClient.AddToProcessQueue([pblock, this] { |
| 160 | m_internals->BlockDisconnected(pblock); |
| 161 | }); |
| 162 | } |
| 163 | |
| 164 | void CMainSignals::ChainStateFlushed(const CBlockLocator &locator) { |
| 165 | m_internals->m_schedulerClient.AddToProcessQueue([locator, this] { |
nothing calls this directly
no test coverage detected