Staking Miner (#3141)

Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com>
Co-authored-by: Peter Goodspeed-Niklaus <peter.r.goodspeedniklaus@gmail.com>
This commit is contained in:
Kian Paimani
2021-07-01 21:22:35 +02:00
committed by GitHub
parent ad46aadb1a
commit 505145efd3
16 changed files with 1194 additions and 37 deletions
+3 -3
View File
@@ -1213,7 +1213,7 @@ pub fn polkadot_testnet_genesis(
},
staking: polkadot::StakingConfig {
minimum_validator_count: 1,
validator_count: 2,
validator_count: initial_authorities.len() as u32,
stakers: initial_authorities
.iter()
.map(|x| {
@@ -1312,7 +1312,7 @@ pub fn kusama_testnet_genesis(
},
staking: kusama::StakingConfig {
minimum_validator_count: 1,
validator_count: 2,
validator_count: initial_authorities.len() as u32,
stakers: initial_authorities
.iter()
.map(|x| {
@@ -1416,7 +1416,7 @@ pub fn westend_testnet_genesis(
},
staking: westend::StakingConfig {
minimum_validator_count: 1,
validator_count: 2,
validator_count: initial_authorities.len() as u32,
stakers: initial_authorities
.iter()
.map(|x| {