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);