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

Performs predicate verification for a transaction

Required Methods§

Define predicate verification logic (if any)

Implementors§