Skip to content

Commit

Permalink
style(chainspec): use Pop for testnet name
Browse files Browse the repository at this point in the history
  • Loading branch information
al3mart committed Feb 18, 2025
1 parent 6da2eef commit 62d1013
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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")
}
}

Expand Down

0 comments on commit 62d1013

Please sign in to comment.