From 62d1013c65350bbaabe2d9d4048c2193f179ba3a Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres <11448715+al3mart@users.noreply.github.com> Date: Tue, 18 Feb 2025 18:31:59 +0100 Subject: [PATCH] style(chainspec): use Pop for testnet name --- node/src/chain_spec.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 540dbf20..9ff145b8 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -151,7 +151,7 @@ pub mod testnet { const ID: &str = TESTNET_DEV; Runtime::build( ID, - "POP Testnet (Development)", + "Pop Testnet (Development)", ChainType::Development, ID, ID, @@ -163,13 +163,13 @@ pub mod testnet { /// runtime. pub fn local_chain_spec() -> ChainSpec { const ID: &str = TESTNET_LOCAL; - Runtime::build(ID, "POP Testnet (Local)", ChainType::Local, ID, ID, "paseo-local") + Runtime::build(ID, "Pop Testnet (Local)", ChainType::Local, ID, ID, "paseo-local") } /// Configures a live chain running on multiple nodes, using the testnet runtime. pub fn live_chain_spec() -> ChainSpec { const ID: &str = TESTNET; - Runtime::build(ID, "POP Testnet", ChainType::Live, ID, ID, "paseo") + Runtime::build(ID, "Pop Testnet", ChainType::Live, ID, ID, "paseo") } }