Revert "Add bootnodes"

This reverts commit 1096ddb7ea.

This commit was intended for the testnet branch alone.
This commit is contained in:
Luke Parker
2024-02-26 10:47:42 -05:00
parent 1096ddb7ea
commit b427f4b8ab
4 changed files with 9 additions and 241 deletions

View File

@@ -40,8 +40,7 @@ impl SubstrateCli for Cli {
fn load_spec(&self, id: &str) -> Result<Box<dyn sc_service::ChainSpec>, String> {
match id {
"dev" | "devnet" => Ok(Box::new(chain_spec::development_config()?)),
"local" => Ok(Box::new(chain_spec::local_config()?)),
"testnet" => Ok(Box::new(chain_spec::testnet_config()?)),
"local" => Ok(Box::new(chain_spec::testnet_config()?)),
_ => panic!("Unknown network ID"),
}
}