Trait oracle::feeds::BitcoinFeed

source ·
trait BitcoinFeed {
    // Required method
    fn get_fee_estimate<'life0, 'async_trait>(
        &'life0 self,
        confirmation_target: u32
    ) -> Pin<Box<dyn Future<Output = Result<f64, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn get_fee_estimate<'life0, 'async_trait>( &'life0 self, confirmation_target: u32 ) -> Pin<Box<dyn Future<Output = Result<f64, Error>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§