pub trait TimePointProvider
where Self: Sync + Send,
{ // Required method fn get_current_time_point<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = StdResult<TimePoint>> + Send + 'async_trait>> where Self: 'async_trait, 'life0: 'async_trait; }
Expand description

Provide the current TimePoint of a cardano node.

Required Methods§

source

fn get_current_time_point<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = StdResult<TimePoint>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get the current TimePoint of the cardano node.

Implementors§