From 198b525a0b870df2c3198e56151266bd334daf3e Mon Sep 17 00:00:00 2001 From: srdtrk Date: Tue, 16 Jan 2024 19:22:29 +0300 Subject: [PATCH] docs: added godocs --- .../apps/27-interchain-accounts/host/keeper/handshake_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go index 04db2a2b36d..431e91554f9 100644 --- a/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go +++ b/modules/apps/27-interchain-accounts/host/keeper/handshake_test.go @@ -105,7 +105,8 @@ func (suite *KeeperTestSuite) TestOnChanOpenTry() { // set the active channelID in state suite.chainB.GetSimApp().ICAHostKeeper.SetActiveChannelID(suite.chainB.GetContext(), path.EndpointB.ConnectionID, path.EndpointA.ChannelConfig.PortID, path.EndpointB.ChannelID) - // set the previous encoding to be proto3json. And then set the new encoding to be protobuf. + // set the previous encoding to be proto3json. + // the new encoding is set to be protobuf in the test below. metadata.Encoding = icatypes.EncodingProto3JSON versionBytes, err := icatypes.ModuleCdc.MarshalJSON(&metadata)