Skip to content

Commit

Permalink
Change the order of pallets in genesis config.
Browse files Browse the repository at this point in the history
  • Loading branch information
PopcornPaws committed Feb 17, 2023
1 parent 90770f6 commit dc1e578
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gn-node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,6 @@ fn testnet_genesis(
.map(|k| (k, 1 << 60))
.collect(),
},
aura: AuraConfig {
authorities: vec![],
},
grandpa: GrandpaConfig {
authorities: vec![],
},
validator_manager: ValidatorManagerConfig {
initial_validators: initial_authorities
.iter()
Expand All @@ -187,6 +181,12 @@ fn testnet_genesis(
})
.collect(),
},
aura: AuraConfig {
authorities: vec![],
},
grandpa: GrandpaConfig {
authorities: vec![],
},
sudo: SudoConfig {
// Assign network admin rights.
key: Some(root_key),
Expand Down

0 comments on commit dc1e578

Please sign in to comment.