pub trait BtcRelayApiClient<BlockHash, H256Le>: ClientTwhere
    BlockHash: Send + Sync + 'static + Serialize,
    H256Le: Send + Sync + 'static + Serialize,{
    // Provided method
    fn verify_block_header_inclusion<'life0, 'async_trait>(
        &'life0 self,
        block_hash: H256Le,
        at: Option<BlockHash>
    ) -> Pin<Box<dyn Future<Output = RpcResult<Result<(), DispatchError>>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Client implementation for the BtcRelayApi RPC API.

Provided Methods§

source

fn verify_block_header_inclusion<'life0, 'async_trait>( &'life0 self, block_hash: H256Le, at: Option<BlockHash> ) -> Pin<Box<dyn Future<Output = RpcResult<Result<(), DispatchError>>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl<TypeJsonRpseeInteral, BlockHash, H256Le> BtcRelayApiClient<BlockHash, H256Le> for TypeJsonRpseeInteralwhere TypeJsonRpseeInteral: ClientT, BlockHash: Send + Sync + 'static + Serialize, H256Le: Send + Sync + 'static + Serialize,