osmosis_std/types/ibc/lightclients/localhost/
v2.rs

1use osmosis_std_derive::CosmwasmExt;
2/// ClientState defines the 09-localhost client state
3#[allow(clippy::derive_partial_eq_without_eq)]
4#[derive(
5    Clone,
6    PartialEq,
7    Eq,
8    ::prost::Message,
9    ::serde::Serialize,
10    ::serde::Deserialize,
11    ::schemars::JsonSchema,
12    CosmwasmExt,
13)]
14#[proto_message(type_url = "/ibc.lightclients.localhost.v2.ClientState")]
15pub struct ClientState {
16    /// the latest block height
17    #[prost(message, optional, tag = "1")]
18    pub latest_height: ::core::option::Option<super::super::super::core::client::v1::Height>,
19}