Skip to content

Commit

Permalink
fix turing staging relay to rococo-testnet (#116)
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Zhou <[email protected]>
  • Loading branch information
justinzhou93 and Justin Zhou committed Mar 15, 2022
1 parent f468242 commit 5de5a86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/src/chain_spec/turing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ use turing_runtime::{
static TOKEN_SYMBOL: &str = "TUR";
const SS_58_FORMAT: u32 = 51;
static RELAY_CHAIN: &str = "rococo-local";
static STAGING_RELAY_CHAIN: &str = "rococo-testnet";
static TURING_RELAY_CHAIN: &str = "ksmcc3";
const DEFAULT_PARA_ID: u32 = 2000;

Expand Down Expand Up @@ -190,7 +191,7 @@ pub fn turing_staging() -> ChainSpec {
Some(properties),
// Extensions
Extensions {
relay_chain: RELAY_CHAIN.into(), // You MUST set this to the correct network!
relay_chain: STAGING_RELAY_CHAIN.into(), // You MUST set this to the correct network!
para_id: DEFAULT_PARA_ID,
},
)
Expand Down

0 comments on commit 5de5a86

Please sign in to comment.