Advance this Scenario's time; this affects the timestamps newly scheduled events get. */
| 94 | |
| 95 | /** Advance this Scenario's time; this affects the timestamps newly scheduled events get. */ |
| 96 | void AdvanceTime(std::chrono::microseconds amount) |
| 97 | { |
| 98 | assert(amount.count() >= 0); |
| 99 | m_now += amount; |
| 100 | } |
| 101 | |
| 102 | /** Schedule a ForgetTxHash call at the Scheduler's current time. */ |
| 103 | void ForgetTxHash(const uint256& txhash) |
no test coverage detected