pub trait Checkable<Context>: Sized {
    type Checked;

    // Required methods
    fn check(
        self,
        c: &Context
    ) -> Result<Self::Checked, TransactionValidityError>;
    fn unchecked_into_checked_i_know_what_i_am_doing(
        self,
        c: &Context
    ) -> Result<Self::Checked, TransactionValidityError>;
}
Expand description

Extract the digest type for a block. A “checkable” piece of information, used by the standard Substrate Executive in order to check the validity of a piece of extrinsic information, usually by verifying the signature. Implement for pieces of information that require some additional context Context in order to be checked.

Required Associated Types§

source

type Checked

Returned if check succeeds.

Required Methods§

source

fn check(self, c: &Context) -> Result<Self::Checked, TransactionValidityError>

Check self, given an instance of Context.

source

fn unchecked_into_checked_i_know_what_i_am_doing( self, c: &Context ) -> Result<Self::Checked, TransactionValidityError>

Blindly check self.

WARNING

DO NOT USE IN PRODUCTION. This is only meant to be used in testing environments. A runtime compiled with try-runtime should never be in production. Moreover, the name of this function is deliberately chosen to prevent developers from ever calling it in consensus code-paths.

Implementors§

source§

impl<Address, AccountId, Call, Signature, Extra, Lookup> Checkable<Lookup> for UncheckedExtrinsic<Address, Call, Signature, Extra>where Address: Member + MaybeDisplay, Call: Encode + Member, Signature: Member + Verify, <Signature as Verify>::Signer: IdentifyAccount<AccountId = AccountId>, Extra: SignedExtension<AccountId = AccountId>, AccountId: Member + MaybeDisplay, Lookup: Lookup<Source = Address, Target = AccountId>,

§

type Checked = CheckedExtrinsic<AccountId, Call, Extra>

source§

impl<Call: Codec + Sync + Send, Context, Extra> Checkable<Context> for TestXt<Call, Extra>

§

type Checked = TestXt<Call, Extra>

source§

impl<T: BlindCheckable, Context> Checkable<Context> for T