Companion for Generate storage info for pallet authority_discovery #9428 (#3517)

* 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:
Georges
2021-08-30 07:49:10 +01:00
committed by GitHub
parent 64cbeab3b3
commit 0b5117f818
9 changed files with 178 additions and 163 deletions
+4 -1
View File
@@ -422,6 +422,7 @@ where
parameter_types! {
pub const MaxRetries: u32 = 3;
pub const MaxAuthorities: u32 = 100_000;
}
impl pallet_offences::Config for Runtime {
@@ -430,7 +431,9 @@ impl pallet_offences::Config for Runtime {
type OnOffenceHandler = ();
}
impl pallet_authority_discovery::Config for Runtime {}
impl pallet_authority_discovery::Config for Runtime {
type MaxAuthorities = MaxAuthorities;
}
parameter_types! {
pub const MinimumPeriod: u64 = SLOT_DURATION / 2;