Trait tetcore_test_client::BlockchainEventsExt[][src]

pub trait BlockchainEventsExt<C, B> where
    C: BlockchainEvents<B>,
    B: BlockT
{ fn wait_for_blocks(
        &self,
        count: usize
    ) -> Pin<Box<dyn Future<Output = ()> + Send>>; }

An extension trait for BlockchainEvents.

Required methods

fn wait_for_blocks(
    &self,
    count: usize
) -> Pin<Box<dyn Future<Output = ()> + Send>>
[src]

Wait for count blocks to be imported in the node and then exit. This function will not return if no blocks are ever created, thus you should restrict the maximum amount of time of the test execution.

Loading content...

Implementors

impl<C, B> BlockchainEventsExt<C, B> for C where
    C: BlockchainEvents<B>,
    B: BlockT
[src]

Loading content...