From 8b5e4fdae984cf0c0a58e29c1bb4b4e629bc9eab Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres <11448715+al3mart@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:50:12 +0100 Subject: [PATCH] fix: chainspec typos --- node/src/chain_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 4e83f7b6..e8896ad7 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -183,7 +183,7 @@ pub fn testnet_config(relay: Relay) -> TestnetChainSpec { ) .with_name("Pop Network Testnet") .with_id("pop-testnet") - .with_chain_type(ChainType::Local) + .with_chain_type(ChainType::Live) .with_genesis_config_patch(testnet_genesis( // initial collators. vec![ @@ -197,7 +197,7 @@ pub fn testnet_config(relay: Relay) -> TestnetChainSpec { sudo_account_id, para_id.into(), )) - .with_protocol_id("pop-tesnet") + .with_protocol_id("pop-testnet") .with_properties(properties) .build() }