mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 17:01:09 +00:00
* Fixing Polkadot after substrate changes moving Vec to BoundedVec * Removing changes to pallet aura bumping bitflags version * update Substrate Co-authored-by: parity-processbot <>
This commit is contained in:
@@ -246,8 +246,8 @@ pub fn relevant_authority_ids<T: initializer::Config + pallet_authority_discover
|
||||
// Due to `max_validators`, the `SessionInfo` stores only the validators who are actively
|
||||
// selected to participate in parachain consensus. We'd like all authorities for the current
|
||||
// and next sessions to be used in authority-discovery. The two sets likely have large overlap.
|
||||
let mut authority_ids = <pallet_authority_discovery::Pallet<T>>::current_authorities();
|
||||
authority_ids.extend(<pallet_authority_discovery::Pallet<T>>::next_authorities());
|
||||
let mut authority_ids = <pallet_authority_discovery::Pallet<T>>::current_authorities().to_vec();
|
||||
authority_ids.extend(<pallet_authority_discovery::Pallet<T>>::next_authorities().to_vec());
|
||||
|
||||
// Due to disputes, we'd like to remain connected to authorities of the previous few sessions.
|
||||
// For this, we don't need anyone other than the validators actively participating in consensus.
|
||||
|
||||
Reference in New Issue
Block a user