From 4042cf37ec4052b29e420c28f88a898aac83e6d4 Mon Sep 17 00:00:00 2001 From: keruch Date: Thu, 12 Sep 2024 12:45:46 +0200 Subject: [PATCH] small fix --- x/incentives/types/codec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/incentives/types/codec.go b/x/incentives/types/codec.go index 3a6d47581..9bd8e9f4f 100644 --- a/x/incentives/types/codec.go +++ b/x/incentives/types/codec.go @@ -16,7 +16,7 @@ var ( // LegacyAmino codec. These types are used for Amino JSON serialization. func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgCreateGauge{}, "dymensionxyz/dymension/incentives/CreateGauge", nil) - cdc.RegisterConcrete(&MsgAddToGauge{}, "dymensionxyz/dymension/incentives/CalculateGaugeRewards", nil) + cdc.RegisterConcrete(&MsgAddToGauge{}, "dymensionxyz/dymension/incentives/AddToGauge", nil) } // RegisterInterfaces registers interfaces and implementations of the incentives module.