From b3e9af679e5f747dfc80df4733d6bf0a692ee6c5 Mon Sep 17 00:00:00 2001 From: Jim Fasarakis-Hilliard Date: Thu, 1 Jun 2023 16:39:58 +0300 Subject: [PATCH] Update modules/core/keeper/msg_server.go Co-authored-by: Damian Nolan --- modules/core/keeper/msg_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/keeper/msg_server.go b/modules/core/keeper/msg_server.go index e7cf1d7a6d3f..c75f11b8d879 100644 --- a/modules/core/keeper/msg_server.go +++ b/modules/core/keeper/msg_server.go @@ -707,7 +707,7 @@ func (k Keeper) UpdateClientParams(goCtx context.Context, msg *clienttypes.MsgUp return &clienttypes.MsgUpdateParamsResponse{}, nil } -// UpdateConnectionParams defines a rpc handler method for MsgUpdateParams for the connection submodule. +// UpdateConnectionParams defines a rpc handler method for MsgUpdateParams for the 03-connection submodule. func (k Keeper) UpdateConnectionParams(goCtx context.Context, msg *connectiontypes.MsgUpdateParams) (*connectiontypes.MsgUpdateParamsResponse, error) { if k.GetAuthority() != msg.Authority { return nil, errorsmod.Wrapf(ibcerrors.ErrUnauthorized, "expected %s, got %s", k.GetAuthority(), msg.Authority)