(&self, subnet: &SubnetID)
| 645 | } |
| 646 | |
| 647 | pub async fn get_commit_sha(&self, subnet: &SubnetID) -> anyhow::Result<[u8; 32]> { |
| 648 | let conn = self.get_connection(subnet)?; |
| 649 | |
| 650 | conn.manager().get_commit_sha().await |
| 651 | } |
| 652 | |
| 653 | pub async fn get_chain_head_height(&self, subnet: &SubnetID) -> anyhow::Result<ChainEpoch> { |
| 654 | let conn = self.get_connection(subnet)?; |
no test coverage detected