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
@@ -110,7 +110,10 @@ mod benchmarks {
fn unnote_preimage() {
let caller = funded_account::<T>();
let (preimage, hash) = preimage_and_hash::<T>();
assert_ok!(Pezpallet::<T>::note_preimage(RawOrigin::Signed(caller.clone()).into(), preimage));
assert_ok!(Pezpallet::<T>::note_preimage(
RawOrigin::Signed(caller.clone()).into(),
preimage
));
#[extrinsic_call]
_(RawOrigin::Signed(caller), hash);
@@ -139,7 +142,10 @@ mod benchmarks {
.expect("ManagerOrigin has no successful origin required for the benchmark");
let (preimage, hash) = preimage_and_hash::<T>();
let noter = funded_account::<T>();
assert_ok!(Pezpallet::<T>::note_preimage(RawOrigin::Signed(noter.clone()).into(), preimage));
assert_ok!(Pezpallet::<T>::note_preimage(
RawOrigin::Signed(noter.clone()).into(),
preimage
));
#[extrinsic_call]
_(o as T::RuntimeOrigin, hash);
+2 -1
View File
@@ -131,7 +131,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>;
/// The Weight information for this pezpallet.
type WeightInfo: weights::WeightInfo;