pallet-ibc 2.0.0-pre.2

An IBC implementation on Substrate.
1
2
3
4
5
6
7
8
9
use crate::client::ClientType;

pub trait Header {
    /// The type of client (eg. Tendermint)
    fn client_type(&self) -> ClientType;

    /// The height of the consensus state
    fn height(&self) -> u32;
}