diff --git a/x/fswap/types/proposal.go b/x/fswap/types/proposal.go index 6aba55a5c9..5891f449d0 100644 --- a/x/fswap/types/proposal.go +++ b/x/fswap/types/proposal.go @@ -42,5 +42,8 @@ func (m *MakeSwapProposal) ValidateBasic() error { if err := m.Swap.ValidateBasic(); err != nil { return err } + if err := m.ToDenomMetadata.Validate(); err != nil { + return err + } return gov.ValidateAbstract(m) }