diff --git a/node/src/chain_spec/stout.rs b/node/src/chain_spec/stout.rs index 4e5486e2..59da1f45 100644 --- a/node/src/chain_spec/stout.rs +++ b/node/src/chain_spec/stout.rs @@ -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::("Alice"), - // get_collator_keys_from_seed::("Alice"), - // ), - // ( - // get_account_id_from_seed::("Bob"), - // get_collator_keys_from_seed::("Bob"), - // ), - // ], - // // Sudo account - // get_account_id_from_seed::("Alice"), - // // Pre-funded accounts - // vec![ - // get_account_id_from_seed::("Alice"), - // get_account_id_from_seed::("Bob"), - // get_account_id_from_seed::("Charlie"), - // get_account_id_from_seed::("Dave"), - // get_account_id_from_seed::("Eve"), - // get_account_id_from_seed::("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. @@ -175,55 +126,4 @@ pub fn testnet_genesis( }, } ) - // RuntimeGenesisConfig { - // system: SystemConfig { - // code: stout_runtime::WASM_BINARY - // .expect("WASM binary was not build, please build it!") - // .to_vec(), - // ..Default::default() - // }, - // balances: BalancesConfig { - // // Configure endowed accounts with initial balance of 1 << 60. - // balances: endowed_accounts.into_iter().map(|k| (k, 1 << 60)).collect(), - // }, - // parachain_info: stout_runtime::ParachainInfoConfig { - // parachain_id: id, - // ..Default::default() - // }, - // collator_selection: stout_runtime::CollatorSelectionConfig { - // invulnerables: invulnerables.iter().map(|(acc, _)| acc).cloned().collect(), - // candidacy_bond: EXISTENTIAL_DEPOSIT * 16, - // ..Default::default() - // }, - // session: SessionConfig { - // keys: invulnerables - // .iter() - // .map(|(acc, aura)| { - // ( - // acc.clone(), // account id - // acc.clone(), // validator id - // session_keys(aura.clone()), // session keys - // ) - // }) - // .collect(), - // }, - // // no need to pass anything to aura, in fact it will panic if we do. Session will take care - // // of this. - // aura: Default::default(), - // aura_ext: Default::default(), - // parachain_system: Default::default(), - // polkadot_xcm: stout_runtime::PolkadotXcmConfig { - // safe_xcm_version: Some(SAFE_XCM_VERSION), - // ..Default::default() - // }, - // sudo: SudoConfig { - // // Assign network admin rights. - // key: Some(root_key), - // }, - // assets: AssetsConfig { assets: vec![], accounts: vec![], metadata: vec![] }, - // council: CouncilConfig { - // members: invulnerables.into_iter().map(|x| x.0).collect::>(), - // phantom: Default::default(), - // }, - // } }