pub trait BtcRelayApiServer<BlockHash, H256Le>: Sized + Send + Sync + 'static {
    // Required method
    fn verify_block_header_inclusion(
        &self,
        block_hash: H256Le,
        at: Option<BlockHash>
    ) -> RpcResult<Result<(), DispatchError>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self>
       where BlockHash: Send + Sync + 'static + DeserializeOwned,
             H256Le: Send + Sync + 'static + DeserializeOwned { ... }
}
Expand description

Server trait implementation for the BtcRelayApi RPC API.

Required Methods§

source

fn verify_block_header_inclusion( &self, block_hash: H256Le, at: Option<BlockHash> ) -> RpcResult<Result<(), DispatchError>>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, H256Le: Send + Sync + 'static + DeserializeOwned,

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Implementors§

source§

impl<C, Block, H256Le> BtcRelayApiServer<<Block as Block>::Hash, H256Le> for BtcRelay<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: BtcRelayRuntimeApi<Block, H256Le>, H256Le: Codec,