pub trait ValidatedTransaction {
    // Required method
    fn apply(
        source: H160,
        transaction: Transaction
    ) -> Result<(PostDispatchInfo, CallOrCreateInfo), DispatchErrorWithPostInfo>;
}

Required Methods§

source

fn apply( source: H160, transaction: Transaction ) -> Result<(PostDispatchInfo, CallOrCreateInfo), DispatchErrorWithPostInfo>

Object Safety§

This trait is not object safe.

Implementors§