Return IBC packet sequence number (#1225)

* Return IBC packet sequence number

* Fix review feedbacks

* Remove names to return values in DispatchMsg method

* Fix comments
This commit is contained in:
pinosu
2023-03-06 10:07:07 +01:00
committed by GitHub
parent 32aebb813e
commit 4f1c57fc12
6 changed files with 226 additions and 27 deletions

View File

@@ -25,6 +25,12 @@ message MsgIBCSend {
bytes data = 6;
}
// MsgIBCSendResponse
message MsgIBCSendResponse {
// Sequence number of the IBC packet sent
uint64 sequence = 1;
}
// MsgIBCCloseChannel port and channel need to be owned by the contract
message MsgIBCCloseChannel {
string channel = 2 [ (gogoproto.moretags) = "yaml:\"source_channel\"" ];