Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change template chain spec builder to full config
  • Loading branch information
fgamundi committed Feb 7, 2024
commit 4af7a83ce6016acd2d11e2fa19429044fb0cb16c
4 changes: 2 additions & 2 deletions template/node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn development_config() -> ChainSpec {
.with_name("Development")
.with_id("dev")
.with_chain_type(ChainType::Development)
.with_genesis_config_patch(testnet_genesis(
.with_genesis_config(testnet_genesis(
// initial collators.
vec![(
get_account_id_from_seed::<sr25519::Public>("Alice"),
Expand Down Expand Up @@ -112,7 +112,7 @@ pub fn local_testnet_config() -> ChainSpec {
.with_properties(properties)
.with_protocol_id("template-local")
.with_chain_type(ChainType::Local)
.with_genesis_config_patch(testnet_genesis(
.with_genesis_config(testnet_genesis(
// initial collators.
vec![
(
Expand Down