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
@@ -105,9 +105,9 @@ pub use pezpallet::*;
use alloc::{format, vec::Vec};
use pezframe_support::pezpallet_prelude::{MaybeSerializeDeserialize, Parameter, RuntimeDebug};
use pezsp_runtime::DispatchError;
use scale_info::TypeInfo;
use serde::{Deserialize, Serialize};
use pezsp_runtime::DispatchError;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
@@ -133,9 +133,12 @@ pub mod pezpallet {
#[pezpallet::config]
pub trait Config:
pezframe_system::Config + pezpallet_nfts::Config<ItemId = u32> + pezpallet_identity_kyc::Config
pezframe_system::Config
+ pezpallet_nfts::Config<ItemId = u32>
+ pezpallet_identity_kyc::Config
{
type RuntimeEvent: From<Event<Self>> + IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
type RuntimeEvent: From<Event<Self>>
+ IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
type AdminOrigin: EnsureOrigin<Self::RuntimeOrigin>;
type WeightInfo: weights::WeightInfo;
@@ -53,7 +53,10 @@ pub mod v1 {
weight
} else {
log::info!("👌 pezpallet-tiki migration not needed, current version is {:?}", current);
log::info!(
"👌 pezpallet-tiki migration not needed, current version is {:?}",
current
);
T::DbWeight::get().reads(1)
}
}
@@ -80,7 +83,9 @@ pub mod v1 {
}
#[cfg(feature = "try-runtime")]
fn post_upgrade(state: pezsp_std::vec::Vec<u8>) -> Result<(), pezsp_runtime::TryRuntimeError> {
fn post_upgrade(
state: pezsp_std::vec::Vec<u8>,
) -> Result<(), pezsp_runtime::TryRuntimeError> {
use codec::Decode;
let (pre_citizen_count, pre_user_tikis_count, pre_tiki_holder_count): (u32, u32, u32) =