Mark as applied with new state.
(&mut self, state: Merkle)
| 311 | |
| 312 | /// Mark as applied with new state. |
| 313 | pub fn set_applied(&mut self, state: Merkle) { |
| 314 | self.applied = true; |
| 315 | self.new_state = Some(state); |
| 316 | } |
| 317 | |
| 318 | /// Add a recorded file path. |
| 319 | pub fn add_recorded_file(&mut self, path: String) { |
no outgoing calls