chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
+5 -5
View File
@@ -42,11 +42,11 @@ extern crate alloc;
use alloc::vec::Vec;
use codec::{Decode, Encode, MaxEncodedLen};
use log;
use pezframe_support::{
traits::{DisabledValidators, FindAuthor, Get, OnTimestampSet, OneSessionHandler},
BoundedSlice, BoundedVec, ConsensusEngineId, Parameter,
};
use log;
use pezsp_consensus_aura::{AuthorityIndex, ConsensusLog, Slot, AURA_ENGINE_ID};
use pezsp_runtime::{
generic::DigestItem,
@@ -101,15 +101,15 @@ pub mod pezpallet {
/// Whether to allow block authors to create multiple blocks per slot.
///
/// If this is `true`, the pezpallet will allow slots to stay the same across sequential
/// blocks. If this is `false`, the pezpallet will require that subsequent blocks always have
/// higher slots than previous ones.
/// blocks. If this is `false`, the pezpallet will require that subsequent blocks always
/// have higher slots than previous ones.
///
/// Regardless of the setting of this storage value, the pezpallet will always enforce the
/// invariant that slots don't move backwards as the chain progresses.
///
/// The typical value for this should be 'false' unless this pezpallet is being augmented by
/// another pezpallet which enforces some limitation on the number of blocks authors can create
/// using the same slot.
/// another pezpallet which enforces some limitation on the number of blocks authors can
/// create using the same slot.
type AllowMultipleBlocksPerSlot: Get<bool>;
/// The slot duration Aura should run with, expressed in milliseconds.