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