Schedule a ReceivedResponse call at the Scheduler's current time. */
| 126 | |
| 127 | /** Schedule a ReceivedResponse call at the Scheduler's current time. */ |
| 128 | void ReceivedResponse(NodeId peer, const uint256& txhash) |
| 129 | { |
| 130 | auto& runner = m_runner; |
| 131 | runner.actions.emplace_back(m_now, [=,&runner]() { |
| 132 | runner.txrequest.ReceivedResponse(peer, txhash); |
| 133 | runner.txrequest.SanityCheck(); |
| 134 | }); |
| 135 | } |
| 136 | |
| 137 | /** Schedule calls to verify the TxRequestTracker's state at the Scheduler's current time. |
| 138 | * |
no test coverage detected