Skip to content

Commit

Permalink
Make IbcAckCallbackMsg and IbcTimeoutCallbackMsg fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Jul 18, 2024
1 parent af76844 commit 42b516f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/std/src/ibc/callbacks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ pub enum IbcSourceCallbackMsg {
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[non_exhaustive]
pub struct IbcAckCallbackMsg {
acknowledgement: IbcAcknowledgement,
original_packet: IbcPacket,
relayer: Addr,
pub acknowledgement: IbcAcknowledgement,
pub original_packet: IbcPacket,
pub relayer: Addr,
}

impl IbcAckCallbackMsg {
Expand All @@ -158,8 +158,8 @@ impl IbcAckCallbackMsg {
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[non_exhaustive]
pub struct IbcTimeoutCallbackMsg {
packet: IbcPacket,
relayer: Addr,
pub packet: IbcPacket,
pub relayer: Addr,
}

impl IbcTimeoutCallbackMsg {
Expand Down

0 comments on commit 42b516f

Please sign in to comment.