not forcing new session - just let whatever happen

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2024-11-10 21:05:14 +03:00
parent 71701ae427
commit e792c8c113
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA

View File

@ -639,8 +639,8 @@ fn casper_staging_config_genesis() -> serde_json::Value {
.collect::<Vec<_>>(), .collect::<Vec<_>>(),
}, },
"staking": { "staking": {
"validatorCount": 50, "validatorCount": 19,
"minimumValidatorCount": 2, "minimumValidatorCount": 13,
"stakers": initial_authorities "stakers": initial_authorities
.iter() .iter()
.map(|x| { .map(|x| {
@ -652,8 +652,11 @@ fn casper_staging_config_genesis() -> serde_json::Value {
) )
}) })
.collect::<Vec<_>>(), .collect::<Vec<_>>(),
"invulnerables": initial_authorities.iter().map(|x| x.0.clone()).collect::<Vec<_>>(), "invulnerables": initial_authorities
"forceEra": Forcing::ForceNone, .iter()
.map(|x| x.0.clone())
.collect::<Vec<_>>(),
"forceEra": Forcing::NotForcing,
"slashRewardFraction": Perbill::from_percent(10) "slashRewardFraction": Perbill::from_percent(10)
}, },
"babe": { "babe": {