ibc_proto/prost/
ibc.lightclients.localhost.v1.rs

1// This file is @generated by prost-build.
2/// ClientState defines a loopback (localhost) client. It requires (read-only)
3/// access to keys outside the client prefix.
4#[derive(Clone, PartialEq, ::prost::Message)]
5pub struct ClientState {
6    /// self chain ID
7    #[prost(string, tag = "1")]
8    pub chain_id: ::prost::alloc::string::String,
9    /// self latest block height
10    #[prost(message, optional, tag = "2")]
11    pub height: ::core::option::Option<super::super::super::core::client::v1::Height>,
12}
13impl ::prost::Name for ClientState {
14    const NAME: &'static str = "ClientState";
15    const PACKAGE: &'static str = "ibc.lightclients.localhost.v1";
16    fn full_name() -> ::prost::alloc::string::String {
17        "ibc.lightclients.localhost.v1.ClientState".into()
18    }
19    fn type_url() -> ::prost::alloc::string::String {
20        "/ibc.lightclients.localhost.v1.ClientState".into()
21    }
22}