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
@@ -25,8 +25,8 @@
//!
//! # Treasury Pezpallet
//!
//! The Treasury pezpallet provides a "pot" of funds that can be managed by stakeholders in the system
//! and a structure for making spending proposals from this pot.
//! The Treasury pezpallet provides a "pot" of funds that can be managed by stakeholders in the
//! system and a structure for making spending proposals from this pot.
//!
//! ## Overview
//!
@@ -64,10 +64,10 @@
//! Spends can be initiated using either the `spend_local` or `spend` dispatchable. The
//! `spend_local` dispatchable enables the creation of spends using the native currency of the
//! chain, utilizing the funds stored in the pot. These spends are automatically paid out every
//! [`pezpallet::Config::SpendPeriod`]. On the other hand, the `spend` dispatchable allows spending of
//! any asset kind managed by the treasury, with payment facilitated by a designated
//! [`pezpallet::Config::Paymaster`]. To claim these spends, the `payout` dispatchable should be called
//! within some temporal bounds, starting from the moment they become valid and within one
//! [`pezpallet::Config::SpendPeriod`]. On the other hand, the `spend` dispatchable allows spending
//! of any asset kind managed by the treasury, with payment facilitated by a designated
//! [`pezpallet::Config::Paymaster`]. To claim these spends, the `payout` dispatchable should be
//! called within some temporal bounds, starting from the moment they become valid and within one
//! [`pezpallet::Config::PayoutPeriod`].
#![cfg_attr(not(feature = "std"), no_std)]
+1 -2
View File
@@ -26,9 +26,8 @@ use pezsp_runtime::{
};
use pezframe_support::{
assert_err_ignore_postinfo, assert_noop, assert_ok, derive_impl,
assert_err_ignore_postinfo, assert_noop, assert_ok, derive_impl, parameter_types,
pezpallet_prelude::Pays,
parameter_types,
traits::{
tokens::{ConversionFromAssetBalance, PaymentStatus},
ConstU32, ConstU64, OnInitialize,