diff --git a/node/src/chain_spec/stout.rs b/node/src/chain_spec/stout.rs index 4e5486e2..8f34ef27 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,6 +126,7 @@ pub fn testnet_genesis( }, } ) +<<<<<<< HEAD // RuntimeGenesisConfig { // system: SystemConfig { // code: stout_runtime::WASM_BINARY @@ -226,4 +178,6 @@ pub fn testnet_genesis( // phantom: Default::default(), // }, // } +======= +>>>>>>> origin/main }