pub trait CheckPredicates: Sized {
    // Required method
    fn check_predicates(
        self,
        params: &ConsensusParameters,
        gas_costs: &GasCosts
    ) -> Result<Self, CheckError>;
}
Expand description

Provides predicate verification functionality for the transaction.

Required Methods§

source

fn check_predicates( self, params: &ConsensusParameters, gas_costs: &GasCosts ) -> Result<Self, CheckError>

Performs predicates verification of the transaction.

Implementors§