Schedule a DisconnectedPeer call at the Scheduler's current time. */
| 106 | |
| 107 | /** Schedule a DisconnectedPeer call at the Scheduler's current time. */ |
| 108 | void DisconnectedPeer(NodeId peer) |
| 109 | { |
| 110 | auto& runner = m_runner; |
| 111 | runner.actions.emplace_back(m_now, [=,&runner]() { |
| 112 | runner.txrequest.DisconnectedPeer(peer); |
| 113 | runner.txrequest.SanityCheck(); |
| 114 | }); |
| 115 | } |
| 116 | |
| 117 | /** Schedule a RequestedTx call at the Scheduler's current time. */ |
| 118 | void RequestedTx(NodeId peer, const uint256& txhash, std::chrono::microseconds exptime) |
no test coverage detected