Skip to content

Commit 5166ea7

Browse files
authored
chore: fix function name in comment (#226)
1 parent a221450 commit 5166ea7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

x/tokenfactory/types/msgs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func NewMsgBurn(sender string, amount sdk.Coin) *MsgBurn {
104104
}
105105
}
106106

107-
// NewMsgBurn creates a message to burn tokens
107+
// NewMsgBurnFrom creates a message to burn tokens
108108
func NewMsgBurnFrom(sender string, amount sdk.Coin, burnFromAddress string) *MsgBurn {
109109
return &MsgBurn{
110110
Sender: sender,
@@ -220,7 +220,7 @@ func (m MsgChangeAdmin) GetSigners() []sdk.AccAddress {
220220

221221
var _ sdk.Msg = &MsgSetDenomMetadata{}
222222

223-
// NewMsgChangeAdmin creates a message to burn tokens
223+
// NewMsgSetDenomMetadata creates a message to set denom metadata
224224
func NewMsgSetDenomMetadata(sender string, metadata banktypes.Metadata) *MsgSetDenomMetadata {
225225
return &MsgSetDenomMetadata{
226226
Sender: sender,

0 commit comments

Comments
 (0)