(s: &str)
| 15 | const SUPPORTED_CHAINS: &'static [&'static str] = ChainConfig::SUPPORTED_NAMES; |
| 16 | |
| 17 | fn parse(s: &str) -> eyre::Result<Arc<Self::ChainSpec>> { |
| 18 | chain_value_parser(s) |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | /// Clap value parser for [`BaseChainSpec`]s. |
no test coverage detected