| 162 | } |
| 163 | |
| 164 | void CMainSignals::ChainStateFlushed(const CBlockLocator &locator) { |
| 165 | m_internals->m_schedulerClient.AddToProcessQueue([locator, this] { |
| 166 | m_internals->ChainStateFlushed(locator); |
| 167 | }); |
| 168 | } |
| 169 | |
| 170 | void CMainSignals::Broadcast(int64_t nBestBlockTime, CConnman* connman) { |
| 171 | m_internals->Broadcast(nBestBlockTime, connman); |
nothing calls this directly
no test coverage detected