From 5235822e329574097e99d196ad2c7cbe717b37ab Mon Sep 17 00:00:00 2001 From: Bryan White Date: Mon, 20 Jan 2025 12:54:51 +0100 Subject: [PATCH] fix: linter error --- x/migration/types/msg_update_params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/migration/types/msg_update_params.go b/x/migration/types/msg_update_params.go index e36d023de..c228cb30f 100644 --- a/x/migration/types/msg_update_params.go +++ b/x/migration/types/msg_update_params.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" ) -var _ sdk.Msg = &MsgUpdateParams{} +var _ sdk.Msg = new(MsgUpdateParams) // ValidateBasic does a sanity check on the provided data. func (m *MsgUpdateParams) ValidateBasic() error {