Skip to content

Commit

Permalink
Adjust WriteAcknowledgement fields
Browse files Browse the repository at this point in the history
  • Loading branch information
chipshort committed Oct 13, 2023
1 parent 7bb610b commit ffc8a40
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/std/src/ibc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ pub enum IbcMsg {
/// In this case, you can return an [`IbcReceiveResponse`] with an acknowledgement of `None`
/// from `ibc_packet_receive` and call this message later.
WriteAcknowledgement {
packet_id: String,
/// The channel on the destination chain (the chain this is executed on)
/// to write the acknowledgement to.
dest_channel: IbcEndpoint,
/// The sequence number of the packet to acknowledge.
sequence: u64,
ack: IbcAcknowledgement,
},
}
Expand Down

0 comments on commit ffc8a40

Please sign in to comment.