(&self)
| 138 | } |
| 139 | |
| 140 | pub fn assert_system_readiness(&self) { |
| 141 | if !self.is_healthy() { |
| 142 | trap("Canister is not healthy, it must be initialized first."); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | pub async fn do_update_system_info( |
| 147 | system_info: &mut SystemInfo, |
no test coverage detected