Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/main' into westend
Browse files Browse the repository at this point in the history
  • Loading branch information
José Molina committed Feb 16, 2024
2 parents efc4bb2 + a07b7e8 commit 684aac3
Showing 1 changed file with 3 additions and 49 deletions.
52 changes: 3 additions & 49 deletions node/src/chain_spec/stout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,55 +84,6 @@ pub fn stout_local_testnet_config() -> ChainSpec {
.with_protocol_id(DEFAULT_PROTOCOL_ID)
.with_properties(properties)
.build()

// ChainSpec::from_genesis(
// // Name
// "Stout Local",
// // ID
// "stout_local",
// ChainType::Local,
// move || {
// testnet_genesis(
// // Initial collators.
// vec![
// (
// get_account_id_from_seed::<sr25519::Public>("Alice"),
// get_collator_keys_from_seed::<AuraId>("Alice"),
// ),
// (
// get_account_id_from_seed::<sr25519::Public>("Bob"),
// get_collator_keys_from_seed::<AuraId>("Bob"),
// ),
// ],
// // Sudo account
// get_account_id_from_seed::<sr25519::Public>("Alice"),
// // Pre-funded accounts
// vec![
// get_account_id_from_seed::<sr25519::Public>("Alice"),
// get_account_id_from_seed::<sr25519::Public>("Bob"),
// get_account_id_from_seed::<sr25519::Public>("Charlie"),
// get_account_id_from_seed::<sr25519::Public>("Dave"),
// get_account_id_from_seed::<sr25519::Public>("Eve"),
// get_account_id_from_seed::<sr25519::Public>("Ferdie"),
// ],
// STOUT_PARA_ID.into(),
// )
// },
// // Bootnodes
// vec![],
// // Telemetry
// None,
// // Protocol ID
// Some(DEFAULT_PROTOCOL_ID),
// None,
// // Properties
// Some(properties),
// // Extensions
// Extensions {
// relay_chain: "rococo-local".into(), // You MUST set this to the correct network!
// para_id: STOUT_PARA_ID,
// },
// )
}

/// Configure initial storage state for FRAME modules.
Expand Down Expand Up @@ -175,6 +126,7 @@ pub fn testnet_genesis(
},
}
)
<<<<<<< HEAD
// RuntimeGenesisConfig {
// system: SystemConfig {
// code: stout_runtime::WASM_BINARY
Expand Down Expand Up @@ -226,4 +178,6 @@ pub fn testnet_genesis(
// phantom: Default::default(),
// },
// }
=======
>>>>>>> origin/main
}

0 comments on commit 684aac3

Please sign in to comment.