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

Method status

bridge/src/client/client.rs:647–657  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

645 // }
646
647 pub async fn status(&self) {
648 if self.depositor_context.is_some() {
649 self.depositor_status().await;
650 }
651 if self.operator_context.is_some() {
652 self.operator_status().await;
653 }
654 if self.verifier_context.is_some() {
655 self.verifier_status().await;
656 }
657 }
658
659 async fn depositor_status(&self) {
660 if self.depositor_context.is_none() {

Callers 2

handle_status_commandMethod · 0.80
fund_input_with_retryMethod · 0.80

Calls 3

depositor_statusMethod · 0.45
operator_statusMethod · 0.45
verifier_statusMethod · 0.45

Tested by 1

fund_input_with_retryMethod · 0.64