Skip to content

Commit

Permalink
Fix chain id in chainspec
Browse files Browse the repository at this point in the history
  • Loading branch information
NZT48 committed Jul 26, 2024
1 parent eac54b0 commit 74d3ed1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub fn development_config() -> ChainSpec {
neuroweb_runtime::WASM_BINARY.expect("WASM binary was not build, please build it!"),
Extensions {
relay_chain: "rococo-local".into(), // You MUST set this to the correct network!
para_id: 2048,
para_id: 2043,
},
)
.with_name("Development")
Expand Down Expand Up @@ -106,7 +106,7 @@ pub fn development_config() -> ChainSpec {
get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
],
2048.into(),
2043.into(),
))
.build()
}
Expand All @@ -121,7 +121,7 @@ pub fn local_testnet_config() -> ChainSpec {
neuroweb_runtime::WASM_BINARY.expect("WASM binary was not build, please build it!"),
Extensions {
relay_chain: "rococo-local".into(), // You MUST set this to the correct network!
para_id: 2048,
para_id: 2043,
},
)
.with_name("NeuroWeb Testnet")
Expand Down Expand Up @@ -154,7 +154,7 @@ pub fn local_testnet_config() -> ChainSpec {
get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
],
2048.into(),
2043.into(),
))
.build()
}
Expand Down

0 comments on commit 74d3ed1

Please sign in to comment.