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 -4
View File
@@ -82,11 +82,11 @@ use pezframe_support::{
},
BoundedVec,
};
use scale_info::TypeInfo;
use pezsp_runtime::{
traits::{AtLeast32BitUnsigned, Bounded, Dispatchable, One, Saturating, Zero},
DispatchError, Perbill,
};
use scale_info::TypeInfo;
mod branch;
pub mod migration;
@@ -814,9 +814,10 @@ impl<T: Config<I>, I: 'static> Polling<T::Tally> for Pezpallet<T, I> {
r
});
let now = T::BlockNumberProvider::current_block_number();
let dummy_account_id =
codec::Decode::decode(&mut pezsp_runtime::traits::TrailingZeroInput::new(&b"dummy"[..]))
.expect("infinite length input; no invalid inputs for type; qed");
let dummy_account_id = codec::Decode::decode(
&mut pezsp_runtime::traits::TrailingZeroInput::new(&b"dummy"[..]),
)
.expect("infinite length input; no invalid inputs for type; qed");
let mut status = ReferendumStatusOf::<T, I> {
track: class,
origin: pezframe_support::dispatch::RawOrigin::Root.into(),
@@ -19,8 +19,8 @@
use super::*;
use codec::{Decode, Encode, EncodeLike, MaxEncodedLen};
use pezframe_support::{pezpallet_prelude::*, storage_alias, traits::OnRuntimeUpgrade};
use log;
use pezframe_support::{pezpallet_prelude::*, storage_alias, traits::OnRuntimeUpgrade};
#[cfg(feature = "try-runtime")]
use pezsp_runtime::TryRuntimeError;
+1 -1
View File
@@ -25,9 +25,9 @@ use pezframe_support::{
traits::{schedule::v3::Anon, Bounded},
Parameter,
};
use scale_info::{Type, TypeInfo};
use pezsp_arithmetic::{Rounding::*, SignedRounding::*};
use pezsp_runtime::{FixedI64, PerThing, RuntimeDebug};
use scale_info::{Type, TypeInfo};
pub type BalanceOf<T, I = ()> =
<<T as Config<I>>::Currency as Currency<<T as pezframe_system::Config>::AccountId>>::Balance;