pub trait BtcRelayRuntimeApi<Block, H256Le>: Core<Block>where
    Block: Block,
    H256Le: Codec,{
    // Provided method
    fn verify_block_header_inclusion(
        &self,
        __runtime_api_at_param__: <Block as Block>::Hash,
        block_hash: H256Le
    ) -> Result<Result<(), DispatchError>, ApiError> { ... }
}

Provided Methods§

source

fn verify_block_header_inclusion( &self, __runtime_api_at_param__: <Block as Block>::Hash, block_hash: H256Le ) -> Result<Result<(), DispatchError>, ApiError>

Verify that the block with the given block hash is relayed, has sufficient confirmations and is part of the main chain

Trait Implementations§

source§

impl<Block, H256Le> RuntimeApiInfo for dyn BtcRelayApi<Block, H256Le> + 'staticwhere Block: Block,

source§

const ID: [u8; 8] = [198u8, 177u8, 6u8, 250u8, 26u8, 56u8, 131u8, 128u8]

The identifier of the runtime api.
source§

const VERSION: u32 = 1u32

The version of the runtime api.

Implementors§