(&self)
| 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() { |