mirror of
https://git.ghostchain.io/proxmio/ghost-node.git
synced 2025-12-27 03:09:56 +00:00
minimal requirements lowered to two stakerers at minimum
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
@@ -360,10 +360,10 @@ fn casper_staging_config_genesis() -> serde_json::Value {
|
||||
serde_json::json!({
|
||||
"balances": {
|
||||
"balances": endowed_accounts
|
||||
.iter()
|
||||
.map(|k: &AccountId| (k.clone(), ENDOWMENT))
|
||||
.chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH)))
|
||||
.collect::<Vec<_>>(),
|
||||
.iter()
|
||||
.map(|k: &AccountId| (k.clone(), ENDOWMENT))
|
||||
.chain(initial_authorities.iter().map(|x| (x.0.clone(), STASH)))
|
||||
.collect::<Vec<_>>(),
|
||||
},
|
||||
"session": {
|
||||
"keys": initial_authorities
|
||||
@@ -384,7 +384,7 @@ fn casper_staging_config_genesis() -> serde_json::Value {
|
||||
},
|
||||
"staking": {
|
||||
"validatorCount": 50,
|
||||
"minimumValidatorCount": 4,
|
||||
"minimumValidatorCount": 2,
|
||||
"stakers": initial_authorities
|
||||
.iter()
|
||||
.map(|x| {
|
||||
|
||||
Reference in New Issue
Block a user