Skip to content

Commit

Permalink
update interface
Browse files Browse the repository at this point in the history
  • Loading branch information
satawatnack committed Dec 12, 2024
1 parent 0dd6f4b commit 3140f79
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 73 deletions.
68 changes: 34 additions & 34 deletions api/band/tunnel/v1beta1/route.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions proto/band/tunnel/v1beta1/route.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ message TSSPacketReceipt {
];
}

// IBCRoute is the type for an IBC route
// IBCRoute represents a route for IBC packets and implements the RouteI interface.
message IBCRoute {
option (cosmos_proto.implements_interface) = "Route";
option (cosmos_proto.implements_interface) = "RouteI";

// channel_id is the IBC channel ID
string channel_id = 1 [(gogoproto.customname) = "ChannelID"];
}

// IBCPacketReceipt represents a receipt for a IBC packet and implements the PacketReceiptI interface.
message IBCPacketReceipt {
option (cosmos_proto.implements_interface) = "PacketContentI";
option (cosmos_proto.implements_interface) = "PacketReceiptI";

// sequence is representing the sequence of the IBC packet.
uint64 sequence = 1;
Expand Down
71 changes: 35 additions & 36 deletions x/tunnel/types/route.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3140f79

Please sign in to comment.