pub trait Executor: Sync + Send {
    fn execute<'life0, 'async_trait>(
        &'life0 self,
        block: ExecutionBlock
    ) -> Pin<Box<dyn Future<Output = Result<FuelBlock, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn dry_run<'life0, 'async_trait>(
        &'life0 self,
        block: ExecutionBlock,
        utxo_validation: Option<bool>
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Vec<Receipt>>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors