Struct cosmos_sdk_proto::ibc::core::connection::v1::MsgConnectionOpenAck[][src]

pub struct MsgConnectionOpenAck {
    pub connection_id: String,
    pub counterparty_connection_id: String,
    pub version: Option<Version>,
    pub client_state: Option<Any>,
    pub proof_height: Option<Height>,
    pub proof_try: Vec<u8>,
    pub proof_client: Vec<u8>,
    pub proof_consensus: Vec<u8>,
    pub consensus_height: Option<Height>,
    pub signer: String,
}

MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to acknowledge the change of connection state to TRYOPEN on Chain B.

Fields

connection_id: Stringcounterparty_connection_id: Stringversion: Option<Version>client_state: Option<Any>proof_height: Option<Height>proof_try: Vec<u8>

proof of the initialization the connection on Chain B: UNITIALIZED -> TRYOPEN

proof_client: Vec<u8>

proof of client state included in message

proof_consensus: Vec<u8>

proof of client consensus state

consensus_height: Option<Height>signer: String

Trait Implementations

impl Clone for MsgConnectionOpenAck[src]

impl Debug for MsgConnectionOpenAck[src]

impl Default for MsgConnectionOpenAck[src]

impl Message for MsgConnectionOpenAck[src]

impl PartialEq<MsgConnectionOpenAck> for MsgConnectionOpenAck[src]

impl StructuralPartialEq for MsgConnectionOpenAck[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]