(&self)
| 81 | } |
| 82 | |
| 83 | fn clear_live_state(&self) { |
| 84 | *self.lock_live_state() = None; |
| 85 | } |
| 86 | |
| 87 | fn set_live_state(&self, db: PendingExecutionDb, state_overrides: StateOverride) { |
| 88 | *self.lock_live_state() = Some(LivePendingState { db, state_overrides }); |
no test coverage detected