mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 11:41:02 +00:00
* Adding MaxSegmentLength and MaxAuthorities to pallet babe * Missed a few to_vec * Removing `MaxSegmentLength` as not needed anymore * Adding `MaxAuthorities` to couple of missing place * Adding missing definition of `MaxAuthorities` * Adding a missing to_vec * update Substrate Co-authored-by: thiolliere <gui.thiolliere@gmail.com> Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+154
-154
File diff suppressed because it is too large
Load Diff
@@ -108,6 +108,7 @@ parameter_types! {
|
|||||||
pub const EpochDuration: u64 = 10;
|
pub const EpochDuration: u64 = 10;
|
||||||
pub const ExpectedBlockTime: Moment = 6_000;
|
pub const ExpectedBlockTime: Moment = 6_000;
|
||||||
pub const ReportLongevity: u64 = 10;
|
pub const ReportLongevity: u64 = 10;
|
||||||
|
pub const MaxAuthorities: u32 = 100_000;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl pallet_babe::Config for Test {
|
impl pallet_babe::Config for Test {
|
||||||
@@ -126,6 +127,7 @@ impl pallet_babe::Config for Test {
|
|||||||
)>>::IdentificationTuple;
|
)>>::IdentificationTuple;
|
||||||
type HandleEquivocation = ();
|
type HandleEquivocation = ();
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
|
|||||||
@@ -240,6 +240,8 @@ impl pallet_babe::Config for Runtime {
|
|||||||
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
||||||
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
@@ -1938,7 +1940,7 @@ sp_api::impl_runtime_apis! {
|
|||||||
slot_duration: Babe::slot_duration(),
|
slot_duration: Babe::slot_duration(),
|
||||||
epoch_length: EpochDuration::get(),
|
epoch_length: EpochDuration::get(),
|
||||||
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
||||||
genesis_authorities: Babe::authorities(),
|
genesis_authorities: Babe::authorities().to_vec(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -245,6 +245,8 @@ impl pallet_babe::Config for Runtime {
|
|||||||
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
||||||
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
@@ -1514,7 +1516,7 @@ sp_api::impl_runtime_apis! {
|
|||||||
slot_duration: Babe::slot_duration(),
|
slot_duration: Babe::slot_duration(),
|
||||||
epoch_length: EpochDuration::get(),
|
epoch_length: EpochDuration::get(),
|
||||||
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
||||||
genesis_authorities: Babe::authorities(),
|
genesis_authorities: Babe::authorities().to_vec(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -512,6 +512,8 @@ impl pallet_babe::Config for Runtime {
|
|||||||
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
||||||
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
@@ -1309,7 +1311,7 @@ sp_api::impl_runtime_apis! {
|
|||||||
slot_duration: Babe::slot_duration(),
|
slot_duration: Babe::slot_duration(),
|
||||||
epoch_length: EpochDurationInBlocks::get().into(),
|
epoch_length: EpochDurationInBlocks::get().into(),
|
||||||
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
||||||
genesis_authorities: Babe::authorities(),
|
genesis_authorities: Babe::authorities().to_vec(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -188,6 +188,7 @@ impl pallet_babe::Config for Runtime {
|
|||||||
type HandleEquivocation = ();
|
type HandleEquivocation = ();
|
||||||
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
@@ -914,7 +915,7 @@ sp_api::impl_runtime_apis! {
|
|||||||
slot_duration: Babe::slot_duration(),
|
slot_duration: Babe::slot_duration(),
|
||||||
epoch_length: EpochDuration::get(),
|
epoch_length: EpochDuration::get(),
|
||||||
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
||||||
genesis_authorities: Babe::authorities(),
|
genesis_authorities: Babe::authorities().to_vec(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -226,6 +226,8 @@ impl pallet_babe::Config for Runtime {
|
|||||||
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
|
||||||
|
|
||||||
type WeightInfo = ();
|
type WeightInfo = ();
|
||||||
|
|
||||||
|
type MaxAuthorities = MaxAuthorities;
|
||||||
}
|
}
|
||||||
|
|
||||||
parameter_types! {
|
parameter_types! {
|
||||||
@@ -1363,7 +1365,7 @@ sp_api::impl_runtime_apis! {
|
|||||||
slot_duration: Babe::slot_duration(),
|
slot_duration: Babe::slot_duration(),
|
||||||
epoch_length: EpochDuration::get(),
|
epoch_length: EpochDuration::get(),
|
||||||
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
c: BABE_GENESIS_EPOCH_CONFIG.c,
|
||||||
genesis_authorities: Babe::authorities(),
|
genesis_authorities: Babe::authorities().to_vec(),
|
||||||
randomness: Babe::randomness(),
|
randomness: Babe::randomness(),
|
||||||
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
allowed_slots: BABE_GENESIS_EPOCH_CONFIG.allowed_slots,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user