From 7c2a71f448790c6541f7f362537034a861b628a8 Mon Sep 17 00:00:00 2001 From: Michael Tsitrin <114929630+mtsitrin@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:55:34 +0200 Subject: [PATCH] fix(IRO): registered missing BuyExactSpend codec register (#1464) --- x/iro/types/codec.go | 1 + 1 file changed, 1 insertion(+) diff --git a/x/iro/types/codec.go b/x/iro/types/codec.go index a1b72bb8f..29993e2f5 100644 --- a/x/iro/types/codec.go +++ b/x/iro/types/codec.go @@ -14,6 +14,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterConcrete(&MsgClaim{}, "iro/Claim", nil) cdc.RegisterConcrete(&MsgCreatePlan{}, "iro/CreatePlan", nil) cdc.RegisterConcrete(&MsgUpdateParams{}, "iro/UpdateParams", nil) + cdc.RegisterConcrete(&MsgBuyExactSpend{}, "iro/BuyExactSpend", nil) } func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {