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
@@ -280,15 +280,15 @@ mod benchmarks {
// If `BountyUpdatePeriod` overflows the inactivity timeout the benchmark still
// executes the slash
let origin: T::RuntimeOrigin = if Pezpallet::<T>::treasury_block_number() <= inactivity_timeout
{
let child_curator = bounty_setup.child_curator;
T::RejectOrigin::try_successful_origin()
.unwrap_or_else(|_| RawOrigin::Signed(child_curator).into())
} else {
let caller = whitelisted_caller();
RawOrigin::Signed(caller).into()
};
let origin: T::RuntimeOrigin =
if Pezpallet::<T>::treasury_block_number() <= inactivity_timeout {
let child_curator = bounty_setup.child_curator;
T::RejectOrigin::try_successful_origin()
.unwrap_or_else(|_| RawOrigin::Signed(child_curator).into())
} else {
let caller = whitelisted_caller();
RawOrigin::Signed(caller).into()
};
#[extrinsic_call]
_(origin as T::RuntimeOrigin, bounty_setup.bounty_id, bounty_setup.child_bounty_id);
@@ -163,7 +163,8 @@ pub mod pezpallet {
/// 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>;
/// Weight information for extrinsics in this pezpallet.
type WeightInfo: WeightInfo;