use crate::{Config, Pallet};
use codec::{Decode, Encode};
use scale_info::TypeInfo;
use sp_runtime::{
impl_tx_ext_default, traits::TransactionExtension,
transaction_validity::TransactionValidityError,
};
#[derive(Encode, Decode, Clone, Eq, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]
pub struct CheckSpecVersion<T: Config + Send + Sync>(core::marker::PhantomData<T>);
impl<T: Config + Send + Sync> core::fmt::Debug for CheckSpecVersion<T> {
#[cfg(feature = "std")]
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
write!(f, "CheckSpecVersion")
}
#[cfg(not(feature = "std"))]
fn fmt(&self, _: &mut core::fmt::Formatter) -> core::fmt::Result {
Ok(())
}
}
impl<T: Config + Send + Sync> CheckSpecVersion<T> {
pub fn new() -> Self {
Self(core::marker::PhantomData)
}
}
impl<T: Config + Send + Sync> TransactionExtension<<T as Config>::RuntimeCall>
for CheckSpecVersion<T>
{
const IDENTIFIER: &'static str = "CheckSpecVersion";
type Implicit = u32;
fn implicit(&self) -> Result<Self::Implicit, TransactionValidityError> {
Ok(<Pallet<T>>::runtime_version().spec_version)
}
type Val = ();
type Pre = ();
fn weight(&self, _: &<T as Config>::RuntimeCall) -> sp_weights::Weight {
<T::ExtensionsWeightInfo as super::WeightInfo>::check_spec_version()
}
impl_tx_ext_default!(<T as Config>::RuntimeCall; validate prepare);
}