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
@@ -62,7 +62,8 @@ mod benchmarks {
true,
RewardDestination::Staked,
)?;
let v_controller = pezpallet_staking::Pezpallet::<T>::bonded(&v_stash).ok_or("not stash")?;
let v_controller =
pezpallet_staking::Pezpallet::<T>::bonded(&v_stash).ok_or("not stash")?;
let keys = T::Keys::decode(&mut TrailingZeroInput::zeroes()).unwrap();
let proof: Vec<u8> = vec![0, 1, 2, 3];
@@ -87,7 +88,8 @@ mod benchmarks {
true,
RewardDestination::Staked,
)?;
let v_controller = pezpallet_staking::Pezpallet::<T>::bonded(&v_stash).ok_or("not stash")?;
let v_controller =
pezpallet_staking::Pezpallet::<T>::bonded(&v_stash).ok_or("not stash")?;
let keys = T::Keys::decode(&mut TrailingZeroInput::zeroes()).unwrap();
let proof: Vec<u8> = vec![0, 1, 2, 3];
assert_ok!(Session::<T>::ensure_can_pay_key_deposit(&v_controller));
@@ -74,7 +74,8 @@ pub mod pezpallet {
pub trait Config: pezpallet_session::Config + pezframe_system::Config {
/// The overarching event type.
#[allow(deprecated)]
type RuntimeEvent: From<Event<Self>> + IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
type RuntimeEvent: From<Event<Self>>
+ IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
/// Full identification of the validator.
type FullIdentification: Parameter;
+8 -7
View File
@@ -88,8 +88,8 @@
//!
//! ### Example from the FRAME
//!
//! The [Staking pezpallet](../pezpallet_staking/index.html) uses the Session pezpallet to get the validator
//! set.
//! The [Staking pezpallet](../pezpallet_staking/index.html) uses the Session pezpallet to get the
//! validator set.
//!
//! ```
//! use pezpallet_session as session;
@@ -270,8 +270,8 @@ pub trait SessionManager<ValidatorId> {
}
/// End the session.
///
/// Because the session pezpallet can queue validator set the ending session can be lower than the
/// last new session index.
/// Because the session pezpallet can queue validator set the ending session can be lower than
/// the last new session index.
fn end_session(end_index: SessionIndex);
/// Start an already planned session.
///
@@ -405,7 +405,8 @@ pub mod pezpallet {
pub trait Config: pezframe_system::Config {
/// The overarching event type.
#[allow(deprecated)]
type RuntimeEvent: From<Event<Self>> + IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
type RuntimeEvent: From<Event<Self>>
+ IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
/// A stable ID for a validator.
type ValidatorId: Member
@@ -673,8 +674,8 @@ pub mod pezpallet {
impl<T: Config> Pezpallet<T> {
/// Mint enough funds into `who`, such that they can pay the session key setting deposit.
///
/// Meant to be used if any pezpallet's benchmarking code wishes to set session keys, and wants
/// to make sure it will succeed.
/// Meant to be used if any pezpallet's benchmarking code wishes to set session keys, and
/// wants to make sure it will succeed.
pub fn ensure_can_pay_key_deposit(who: &T::AccountId) -> Result<(), DispatchError> {
use pezframe_support::traits::tokens::{Fortitude, Preservation};
let deposit = T::KeyDeposit::get();
@@ -60,7 +60,8 @@ pub fn migrate<T: pezpallet_session_historical::Config, P: GetStorageVersion + P
);
if on_chain_storage_version < 1 {
let storage_prefix = pezpallet_session_historical::HistoricalSessions::<T>::storage_prefix();
let storage_prefix =
pezpallet_session_historical::HistoricalSessions::<T>::storage_prefix();
pezframe_support::storage::migration::move_storage_from_pallet(
storage_prefix,
OLD_PREFIX.as_bytes(),
@@ -100,7 +101,8 @@ pub fn pre_migrate<
let storage_prefix_historical_sessions =
pezpallet_session_historical::HistoricalSessions::<T>::storage_prefix();
let storage_prefix_stored_range = pezpallet_session_historical::StoredRange::<T>::storage_prefix();
let storage_prefix_stored_range =
pezpallet_session_historical::StoredRange::<T>::storage_prefix();
log_migration("pre-migration", storage_prefix_historical_sessions, OLD_PREFIX, new_pallet_name);
log_migration("pre-migration", storage_prefix_stored_range, OLD_PREFIX, new_pallet_name);
@@ -136,7 +138,8 @@ pub fn post_migrate<
let storage_prefix_historical_sessions =
pezpallet_session_historical::HistoricalSessions::<T>::storage_prefix();
let storage_prefix_stored_range = pezpallet_session_historical::StoredRange::<T>::storage_prefix();
let storage_prefix_stored_range =
pezpallet_session_historical::StoredRange::<T>::storage_prefix();
log_migration(
"post-migration",