From 43eda9f783e5c34fe75a471acb995257184008ff Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Sat, 6 Mar 2021 15:51:59 +0100 Subject: [PATCH] Return full ChannelInfo on Ibc ListChannels query --- packages/std/src/ibc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/std/src/ibc.rs b/packages/std/src/ibc.rs index 60ed92246f..c524e81867 100644 --- a/packages/std/src/ibc.rs +++ b/packages/std/src/ibc.rs @@ -89,7 +89,7 @@ pub struct PortIdResponse { #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)] pub struct ListChannelsResponse { - pub channels: Vec, + pub channels: Vec, } #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]