Trait penumbra_app::CommunityPoolStateReadExt

source ·
pub trait CommunityPoolStateReadExt: StateRead + StateReadExt {
    // Provided method
    fn pending_community_pool_transactions<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Transaction>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}

Provided Methods§

source

fn pending_community_pool_transactions<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<Vec<Transaction>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait, 'life0: 'async_trait,

Get all the transactions set to be delivered in this block (scheduled in last block).

Object Safety§

This trait is not object safe.

Implementors§