File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,16 @@ pub enum IbcMsg {
61
61
/// when packet times out, measured on remote chain
62
62
timeout : IbcTimeout ,
63
63
} ,
64
+ /// Acknowledges a packet that this contract received over IBC.
65
+ /// This allows acknowledging a packet that was not acknowledged yet in the `ibc_packet_receive` call.
66
+ WriteAcknowledgement {
67
+ /// Existing channel where the packet was received
68
+ channel_id : String ,
69
+ /// Sequence number of the packet that was received
70
+ packet_sequence : u64 ,
71
+ /// The acknowledgement to send back
72
+ ack : IbcFullAcknowledgement ,
73
+ } ,
64
74
/// This will close an existing channel that is owned by this contract.
65
75
/// Port is auto-assigned to the contract's IBC port
66
76
CloseChannel { channel_id : String } ,
You can’t perform that action at this time.
0 commit comments