Skip to content

Commit

Permalink
Merge pull request #516 from subspace/change-protocol-id
Browse files Browse the repository at this point in the history
Change protocol ID from Gemini 1 to 1a
  • Loading branch information
nazar-pc authored May 29, 2022
2 parents a2be8c1 + b5e9c3f commit d79a225
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/subspace-node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ pub fn gemini_config_compiled() -> Result<ConsensusChainSpec, String> {
// Name
"Subspace Gemini 1",
// ID
"subspace_gemini_1",
"subspace_gemini_1a",
ChainType::Custom("Subspace Gemini 1".to_string()),
|| {
let sudo_account =
Expand Down Expand Up @@ -155,7 +155,7 @@ pub fn gemini_config_compiled() -> Result<ConsensusChainSpec, String> {
.map_err(|error| error.to_string())?,
),
// Protocol ID
Some("subspace-gemini-1"),
Some("subspace-gemini-1a"),
None,
// Properties
Some(chain_spec_properties()),
Expand Down
4 changes: 2 additions & 2 deletions crates/subspace-node/src/secondary_chain/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub fn gemini_config() -> ExecutionChainSpec {
// Name
"Subspace Gemini Execution 1",
// ID
"subspace_gemini_execution_1",
"subspace_gemini_1a_execution",
ChainType::Local,
move || {
testnet_genesis(vec![
Expand All @@ -107,7 +107,7 @@ pub fn gemini_config() -> ExecutionChainSpec {
// Telemetry
None,
// Protocol ID
Some("subspace-gemini-execution-1"),
Some("subspace-gemini-1a-execution"),
None,
// Properties
Some(chain_spec_properties()),
Expand Down

0 comments on commit d79a225

Please sign in to comment.