From a89445d82e92b9413ad5bec646c321293b4f61cf Mon Sep 17 00:00:00 2001 From: shekohex Date: Wed, 3 Jan 2024 14:09:02 +0000 Subject: [PATCH] Allocate 4007 for Tangle EVM testnet (#395) --- node/src/command.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/command.rs b/node/src/command.rs index ebe938651..c258ef35e 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -73,9 +73,9 @@ impl SubstrateCli for Cli { fn load_spec(&self, id: &str) -> Result, 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")[..], )?),