Skip to content

Commit

Permalink
Updating urls string for LegacyAminoCodec
Browse files Browse the repository at this point in the history
  • Loading branch information
TuSoict committed Dec 6, 2024
1 parent 43ef592 commit 7c07829
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions custom/gov/types/v2custom/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import (
// RegisterLegacyAminoCodec registers all the necessary types and interfaces for the
// governance module.
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
legacy.RegisterAminoMsg(cdc, &govv1.MsgSubmitProposal{}, "cosmos-sdk/v1/MsgSubmitProposal")
legacy.RegisterAminoMsg(cdc, &govv1.MsgDeposit{}, "cosmos-sdk/v1/MsgDeposit")
legacy.RegisterAminoMsg(cdc, &govv1.MsgVote{}, "cosmos-sdk/v1/MsgVote")
legacy.RegisterAminoMsg(cdc, &govv1.MsgVoteWeighted{}, "cosmos-sdk/v1/MsgVoteWeighted")
legacy.RegisterAminoMsg(cdc, &govv1.MsgExecLegacyContent{}, "cosmos-sdk/v1/MsgExecLegacyContent")
legacy.RegisterAminoMsg(cdc, &MsgUpdateParams{}, "cosmos-sdk/x/gov/v1/MsgUpdateParams")
legacy.RegisterAminoMsg(cdc, &govv1.MsgSubmitProposal{}, "gov/MsgSubmitProposal")
legacy.RegisterAminoMsg(cdc, &govv1.MsgDeposit{}, "gov/MsgDeposit")
legacy.RegisterAminoMsg(cdc, &govv1.MsgVote{}, "gov/MsgVote")
legacy.RegisterAminoMsg(cdc, &govv1.MsgVoteWeighted{}, "gov/MsgVoteWeighted")
legacy.RegisterAminoMsg(cdc, &govv1.MsgExecLegacyContent{}, "gov/MsgExecLegacyContent")
legacy.RegisterAminoMsg(cdc, &MsgUpdateParams{}, "gov/MsgUpdateParams")
}

// RegisterInterfaces registers the interfaces types with the Interface Registry.
Expand Down

0 comments on commit 7c07829

Please sign in to comment.