Skip to content

Commit

Permalink
Update rust toolchain to 9.37 to fix the wasm build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
justinphamnz committed Jul 30, 2023
1 parent 31e473a commit 6132e66
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions node/src/chain_spec/continuum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub type ChainSpec = sc_service::GenericChainSpec<continuum_runtime::GenesisConf
/// The default XCM version to set in genesis config.
const SAFE_XCM_VERSION: u32 = xcm::prelude::XCM_VERSION;

pub const PARA_ID: u32 = 2050;
pub const PARA_ID: u32 = 3346;

/// Generate the session keys from individual elements.
///
Expand Down Expand Up @@ -312,7 +312,7 @@ pub fn authority_keys_from_seed(s: &str) -> (AccountId, AuraId) {
pub fn continuum_properties() -> Properties {
let mut properties = Properties::new();

properties.insert("ss58Format".into(), 268.into());
properties.insert("ss58Format".into(), 42.into());
properties.insert("tokenDecimals".into(), 18.into());
properties.insert("tokenSymbol".into(), "NUUM".into());

Expand Down
6 changes: 3 additions & 3 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ echo "*** Initializing WASM build environment"

if [ -z $CI_PROJECT_NAME ]; then
rustup default nightly && rustup update
rustup update nightly-2022-11-15
rustup update nightly-2023-01-01
rustup update stable
fi

rustup target add wasm32-unknown-unknown --toolchain nightly-2022-11-15
rustup default nightly-2022-11-15
rustup target add wasm32-unknown-unknown --toolchain nightly-2023-01-01
rustup default nightly-2023-01-01

0 comments on commit 6132e66

Please sign in to comment.