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
+6 -6
View File
@@ -18,8 +18,8 @@
//! # Assets Holder Pezpallet
//!
//! A pezpallet capable of holding fungibles from `pezpallet-assets`. This is an extension of
//! `pezpallet-assets`, wrapping [`fungibles::Inspect`](`pezframe_support::traits::fungibles::Inspect`).
//! It implements both
//! `pezpallet-assets`, wrapping
//! [`fungibles::Inspect`](`pezframe_support::traits::fungibles::Inspect`). It implements both
//! [`fungibles::hold::Inspect`](pezframe_support::traits::fungibles::hold::Inspect),
//! [`fungibles::hold::Mutate`](pezframe_support::traits::fungibles::hold::Mutate), and especially
//! [`fungibles::hold::Unbalanced`](pezframe_support::traits::fungibles::hold::Unbalanced). The
@@ -34,13 +34,13 @@
//!
//! This pezpallet provides the following functionality:
//!
//! - Pezpallet hooks allowing [`pezpallet-assets`] to know the balance on hold for an account on a given
//! asset (see [`pezpallet_assets::BalanceOnHold`]).
//! - Pezpallet hooks allowing [`pezpallet-assets`] to know the balance on hold for an account on a
//! given asset (see [`pezpallet_assets::BalanceOnHold`]).
//! - An implementation of
//! [`fungibles::hold::Inspect`](pezframe_support::traits::fungibles::hold::Inspect),
//! [`fungibles::hold::Mutate`](pezframe_support::traits::fungibles::hold::Mutate) and
//! [`fungibles::hold::Unbalanced`](pezframe_support::traits::fungibles::hold::Unbalanced), allowing
//! other pallets to manage holds for the `pezpallet-assets` assets.
//! [`fungibles::hold::Unbalanced`](pezframe_support::traits::fungibles::hold::Unbalanced),
//! allowing other pallets to manage holds for the `pezpallet-assets` assets.
#![cfg_attr(not(feature = "std"), no_std)]
@@ -21,8 +21,8 @@ use crate as pezpallet_assets_holder;
pub use crate::*;
use codec::{Decode, Encode, MaxEncodedLen};
use pezframe_support::{derive_impl, traits::AsEnsureOriginWithArg};
use scale_info::TypeInfo;
use pezsp_runtime::BuildStorage;
use scale_info::TypeInfo;
pub type AccountId = <Test as pezframe_system::Config>::AccountId;
pub type Balance = <Test as pezpallet_balances::Config>::Balance;