MCPcopy Create free account
hub / github.com/BitVM/BitVM / handle_push_nonces_command

Method handle_push_nonces_command

bridge/src/client/cli/client_command.rs:309–317  ·  view source on GitHub ↗
(&mut self, sub_matches: &ArgMatches)

Source from the content-addressed store, hash-verified

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")

Callers 2

mainFunction · 0.80

Calls 3

syncMethod · 0.45
push_verifier_noncesMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected