Skip to content

Commit

Permalink
add debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
re-gius committed Dec 18, 2024
1 parent e2fa0ca commit 4bf3cd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion substrate/bin/node/testing/src/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ pub fn config_endowed(extra_endowed: Vec<AccountId>) -> RuntimeGenesisConfig {
validator_count: 3,
minimum_validator_count: 0,
slash_reward_fraction: Perbill::from_percent(10),
invulnerables: BoundedVec::try_from(vec![alice(), bob(), charlie()]).unwrap(),
invulnerables: BoundedVec::try_from(vec![alice(), bob(), charlie()])
.expect("Too many invulnerable validators!"),
..Default::default()
},
society: SocietyConfig { pot: 0 },
Expand Down

0 comments on commit 4bf3cd6

Please sign in to comment.