pub fn status<V>(
client_state: &ClientState,
ctx: &V,
client_id: &ClientId,
) -> Result<Status, ClientError>where
V: ExtClientValidationContext,
ConsensusState: Convertible<V::ConsensusStateRef>,
<ConsensusState as TryFrom<V::ConsensusStateRef>>::Error: Into<ClientError>,Expand description
Query the status of the client state.
Note that this function is typically implemented as part of the
ClientStateValidation trait, but has been made a standalone function
in order to make the ClientState APIs more flexible.