Skip to content

Commit

Permalink
change chainx_spec (paritytech#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
atenjin authored Jun 20, 2019
1 parent 7965f6b commit 003deb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cli/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ fn development_config_genesis() -> GenesisConfig {
/// Development config (single validator Alice)
pub fn development_config() -> ChainSpec {
ChainSpec::from_genesis(
"Development",
"dev",
"ChainX Dev",
"chainx_dev",
development_config_genesis,
vec![],
Some(TelemetryEndpoints::new(vec![(
CHAINX_TELEMETRY_URL.to_string(),
0,
)])),
Some("DEV ChainX V0.9.10"),
Some("ChainX Dev"),
None,
Some(
json!({
Expand All @@ -85,15 +85,15 @@ pub fn testnet_config() -> ChainSpec {
//"/ip4/47.110.232.108/tcp/31129/p2p/QmRnWu3c7Mq7bVHTwJTrSC76XKMQJx4cmGofhSA5XTkk9q".into(),
];
ChainSpec::from_genesis(
"ChainX Local TF",
"ChainX Testnet",
"chainx_testnet",
testnet_genesis,
boot_nodes,
Some(TelemetryEndpoints::new(vec![
(STAGING_TELEMETRY_URL.to_string(), 0),
(CHAINX_TELEMETRY_URL.to_string(), 0),
])),
Some("ChainX Testnet V0.9.10"),
Some("ChainX Testnet"),
None,
Some(
json!({
Expand Down

0 comments on commit 003deb0

Please sign in to comment.