Advance this Scenario's time; this affects the timestamps newly scheduled events get. */
| 79 | |
| 80 | /** Advance this Scenario's time; this affects the timestamps newly scheduled events get. */ |
| 81 | void AdvanceTime(std::chrono::microseconds amount) |
| 82 | { |
| 83 | assert(amount.count() >= 0); |
| 84 | m_now += amount; |
| 85 | } |
| 86 | |
| 87 | /** Schedule a ForgetTxHash call at the Scheduler's current time. */ |
| 88 | void ForgetTxHash(const uint256& txhash) |
no test coverage detected