pub trait LoadSpec { // Required method fn load_spec(&self, id: &str) -> Result<Box<dyn ChainSpec>, String>; }
Helper trait used for loading/building a chain spec starting from the chain ID.
Load/Build a chain spec starting from the chain ID.