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
@@ -47,10 +47,10 @@ use pezframe_support::{
PalletError,
};
use pezframe_system::ensure_signed;
use scale_info::TypeInfo;
use pezsp_core::H160;
use pezsp_runtime::traits::Zero;
use pezsp_std::vec;
use scale_info::TypeInfo;
use xcm::prelude::{
send_xcm, Junction::*, Location, SendError as XcmpSendError, SendXcm, Xcm, XcmContext, XcmHash,
};
@@ -69,8 +69,9 @@ use pezsp_runtime::{traits::Saturating, SaturatedConversion, TokenError};
pub use weights::WeightInfo;
type BalanceOf<T> =
<<T as pezpallet::Config>::Token as Inspect<<T as pezframe_system::Config>::AccountId>>::Balance;
type BalanceOf<T> = <<T as pezpallet::Config>::Token as Inspect<
<T as pezframe_system::Config>::AccountId,
>>::Balance;
pub use pezpallet::*;
@@ -98,7 +99,8 @@ pub mod pezpallet {
#[pezpallet::config]
pub trait Config: pezframe_system::Config {
#[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 verifier for inbound messages from Ethereum
type Verifier: Verifier;
@@ -2,8 +2,8 @@
// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
use super::*;
use pezframe_support::{derive_impl, parameter_types, traits::ConstU32, weights::IdentityFee};
use hex_literal::hex;
use pezframe_support::{derive_impl, parameter_types, traits::ConstU32, weights::IdentityFee};
use pezsnowbridge_beacon_primitives::{
types::deneb, BeaconHeader, ExecutionProof, Fork, ForkVersions, VersionedExecutionPayloadHeader,
};
@@ -2,8 +2,8 @@
// SPDX-FileCopyrightText: 2023 Snowfork <hello@snowfork.com>
use super::*;
use pezframe_support::{assert_noop, assert_ok};
use hex_literal::hex;
use pezframe_support::{assert_noop, assert_ok};
use pezsnowbridge_core::ChannelId;
use pezsnowbridge_inbound_queue_primitives::Proof;
use pezsp_keyring::Sr25519Keyring as Keyring;