(&self, canister_id: Principal)
| 107 | } |
| 108 | |
| 109 | pub fn canister_agent(&self, canister_id: Principal) -> anyhow::Result<Canister> { |
| 110 | Ok(CanisterBuilder::new() |
| 111 | .with_agent(self.interface.agent()) |
| 112 | .with_canister_id(canister_id) |
| 113 | .build()?) |
| 114 | } |
| 115 | |
| 116 | pub fn print_create_request_info(&self, response: &CreateRequestResponse) { |
| 117 | let request_id = &response.request.id; |
no test coverage detected