use crate::{pezpallet_prelude::BlockNumberFor, Config, Pezpallet};
use codec::{Decode, DecodeWithMemTracking, Encode};
use pezsp_runtime::{
impl_tx_ext_default,
traits::{TransactionExtension, Zero},
transaction_validity::TransactionValidityError,
};
use scale_info::TypeInfo;
#[derive(Encode, Decode, DecodeWithMemTracking, Clone, Eq, PartialEq, TypeInfo)]
#[scale_info(skip_type_params(T))]
pub struct CheckGenesis<T: Config + Send + Sync>(core::marker::PhantomData<T>);
impl<T: Config + Send + Sync> core::fmt::Debug for CheckGenesis<T> {
#[cfg(feature = "std")]
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
write!(f, "CheckGenesis")
}
#[cfg(not(feature = "std"))]
fn fmt(&self, _: &mut core::fmt::Formatter) -> core::fmt::Result {
Ok(())
}
}
impl<T: Config + Send + Sync> CheckGenesis<T> {
pub fn new() -> Self {
Self(core::marker::PhantomData)
}
}
impl<T: Config + Send + Sync> TransactionExtension<T::RuntimeCall> for CheckGenesis<T> {
const IDENTIFIER: &'static str = "CheckGenesis";
type Implicit = T::Hash;
fn implicit(&self) -> Result<Self::Implicit, TransactionValidityError> {
Ok(<Pezpallet<T>>::block_hash(BlockNumberFor::<T>::zero()))
}
type Val = ();
type Pre = ();
fn weight(&self, _: &T::RuntimeCall) -> pezsp_weights::Weight {
<T::ExtensionsWeightInfo as super::WeightInfo>::check_genesis().set_proof_size(0)
}
impl_tx_ext_default!(T::RuntimeCall; validate prepare);
}