(&mut self)
| 817 | } |
| 818 | |
| 819 | pub async fn process_peg_ins(&mut self) { |
| 820 | for peg_in_graph in self.data.peg_in_graphs.clone() { |
| 821 | self.process_peg_in_as_depositor(peg_in_graph.id()).await; |
| 822 | self.process_peg_in_as_verifier(peg_in_graph.id()).await; |
| 823 | self.process_peg_in_as_operator(peg_in_graph.id()).await; |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | // TODO: handle internal errors |
| 828 | pub async fn process_peg_outs(&mut self) { |
no test coverage detected