Skip to content

Commit

Permalink
fix lol
Browse files Browse the repository at this point in the history
  • Loading branch information
Vritra4 committed Oct 30, 2023
1 parent 7073929 commit 5956dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/gov/keeper/proposal.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (keeper Keeper) SubmitProposal(ctx sdk.Context, messages []sdk.Msg, metadat
// Loop through all messages and confirm that each has a handler and the gov module account
// as the only signer
for _, msg := range messages {
strings.Join([]string{msgsStr, sdk.MsgTypeURL(msg)}, ",")
msgsStr = strings.Join([]string{msgsStr, sdk.MsgTypeURL(msg)}, ",")

// perform a basic validation of the message
if err := msg.ValidateBasic(); err != nil {
Expand Down

0 comments on commit 5956dea

Please sign in to comment.