| 44 | return m_impl->AddTxAnnouncement(peer, gtxid, now); |
| 45 | } |
| 46 | std::vector<GenTxid> TxDownloadManager::GetRequestsToSend(NodeId nodeid, std::chrono::microseconds current_time) |
| 47 | { |
| 48 | return m_impl->GetRequestsToSend(nodeid, current_time); |
| 49 | } |
| 50 | void TxDownloadManager::ReceivedNotFound(NodeId nodeid, const std::vector<GenTxid>& gtxids) |
| 51 | { |
| 52 | m_impl->ReceivedNotFound(nodeid, gtxids); |
no test coverage detected