Companion for polkadot#7591: Add BEEFY capabilities to Westend and Kusama (#3021)

* add dummy BeefyId to emulated runtimes in integration tests

* update lockfile for {"substrate", "polkadot"}

---------

Co-authored-by: parity-processbot <>
This commit is contained in:
Adrian Catangiu
2023-08-22 12:49:12 +03:00
committed by GitHub
parent 2f8bee0bee
commit d75cacdf78
2 changed files with 281 additions and 265 deletions
+275 -265
View File
File diff suppressed because it is too large Load Diff
@@ -292,6 +292,7 @@ pub mod westend {
para_validator: ValidatorId,
para_assignment: AssignmentId,
authority_discovery: AuthorityDiscoveryId,
beefy: BeefyId,
) -> westend_runtime::SessionKeys {
westend_runtime::SessionKeys {
babe,
@@ -300,6 +301,7 @@ pub mod westend {
para_validator,
para_assignment,
authority_discovery,
beefy,
}
}
@@ -330,6 +332,7 @@ pub mod westend {
x.5.clone(),
x.6.clone(),
x.7.clone(),
get_from_seed::<BeefyId>("Alice"),
),
)
})
@@ -398,6 +401,7 @@ pub mod kusama {
para_validator: ValidatorId,
para_assignment: AssignmentId,
authority_discovery: AuthorityDiscoveryId,
beefy: BeefyId,
) -> kusama_runtime::SessionKeys {
kusama_runtime::SessionKeys {
babe,
@@ -406,6 +410,7 @@ pub mod kusama {
para_validator,
para_assignment,
authority_discovery,
beefy,
}
}
@@ -435,6 +440,7 @@ pub mod kusama {
x.5.clone(),
x.6.clone(),
x.7.clone(),
get_from_seed::<BeefyId>("Alice"),
),
)
})