juno_rust_proto/prost/ibc-go/ibc.lightclients.localhost.v1.rs
1/// ClientState defines a loopback (localhost) client. It requires (read-only)
2/// access to keys outside the client prefix.
3#[allow(clippy::derive_partial_eq_without_eq)]
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}