From 40e5741782f59b2a0b71b2699d59db7716dd02b6 Mon Sep 17 00:00:00 2001 From: Soares Chen Date: Thu, 29 Apr 2021 21:05:22 +0200 Subject: [PATCH] Update example command output in guide --- guide/src/commands/queries/channel.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) 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", ), - ), + }, ] ```