Remove a subnet no longer supported by this node.
(&self, subnet_id: SubnetID)
| 44 | |
| 45 | /// Remove a subnet no longer supported by this node. |
| 46 | pub fn remove_provided_subnet(&self, subnet_id: SubnetID) -> anyhow::Result<()> { |
| 47 | let req = Request::RemoveProvidedSubnet(subnet_id); |
| 48 | self.send_request(req) |
| 49 | } |
| 50 | |
| 51 | /// Add a subnet we know really exist and we are interested in them. |
| 52 | pub fn pin_subnet(&self, subnet_id: SubnetID) -> anyhow::Result<()> { |
no test coverage detected