Skip to content

Commit

Permalink
Allocate 4007 for Tangle EVM testnet (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekohex authored Jan 3, 2024
1 parent 541ae69 commit a89445d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ impl SubstrateCli for Cli {

fn load_spec(&self, id: &str) -> Result<Box<dyn sc_service::ChainSpec>, String> {
Ok(match id {
"" | "dev" | "local" => Box::new(chainspec::testnet::local_testnet_config(4006)?),
"" | "dev" | "local" => Box::new(chainspec::testnet::local_testnet_config(4007)?),
// generates the spec for testnet
"testnet" => Box::new(chainspec::testnet::tangle_testnet_config(4006)?),
"testnet" => Box::new(chainspec::testnet::tangle_testnet_config(4007)?),
"tangle-testnet" => Box::new(chainspec::testnet::ChainSpec::from_json_bytes(
&include_bytes!("../../chainspecs/testnet/tangle-standalone.json")[..],
)?),
Expand Down

0 comments on commit a89445d

Please sign in to comment.