pub trait Mempool {
    fn check_tx<'life0, 'async_trait>(
        &'life0 self,
        _request: RequestCheckTx
    ) -> Pin<Box<dyn Future<Output = ResponseCheckTx> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: Sync + 'async_trait
, { ... } }
Expand description

Mempool, include check_tx.

Provided Methods

Implementations on Foreign Types

Implementors