diff --git a/guide/src/commands/queries/channel.md b/guide/src/commands/queries/channel.md index e14342b0bd..be580b74b3 100644 --- a/guide/src/commands/queries/channel.md +++ b/guide/src/commands/queries/channel.md @@ -27,22 +27,30 @@ hermes query channels ibc-1 ```rust Success: [ - ( - ChannelId( + PortChannelId { + channel_id: ChannelId( "channel-0", ), - PortId( + port_id: PortId( + "transfer", + ), + }, + PortChannelId { + channel_id: ChannelId( + "channel-0", + ), + port_id: PortId( "transfer", ), - ), - ( - ChannelId( - "channel-2", + }, + PortChannelId { + channel_id: ChannelId( + "channel-1", ), - PortId( + port_id: PortId( "transfer", ), - ), + }, ] ```