(&mut self, sub_matches: &ArgMatches)
| 307 | } |
| 308 | |
| 309 | pub async fn handle_push_nonces_command(&mut self, sub_matches: &ArgMatches) -> io::Result<()> { |
| 310 | let graph_id = sub_matches.get_one::<String>("id").unwrap(); |
| 311 | |
| 312 | self.client.sync().await; |
| 313 | self.client.push_verifier_nonces(graph_id); |
| 314 | self.client.flush().await; |
| 315 | |
| 316 | Ok(()) |
| 317 | } |
| 318 | |
| 319 | pub fn get_push_signature_command() -> Command { |
| 320 | Command::new("push-signatures") |
no test coverage detected