Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tnv1 committed Jun 15, 2024
1 parent ac2b35a commit 3cb6cf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/feeabs/types/msg.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ func (m MsgSwapCrossChain) ValidateBasic() error {

func NewMsgSwapCrossChain(sender sdk.AccAddress, ibcDenom string) *MsgSwapCrossChain {
return &MsgSwapCrossChain{
Sender: sender.String(),
IbcDenom: ibcDenom,
Sender: sender.String(),
IbcDenom: ibcDenom,
}
}

Expand Down Expand Up @@ -114,6 +114,6 @@ func (m MsgFundFeeAbsModuleAccount) ValidateBasic() error {
func NewMsgFundFeeAbsModuleAccount(sender sdk.AccAddress, amount sdk.Coins) *MsgFundFeeAbsModuleAccount {
return &MsgFundFeeAbsModuleAccount{
Sender: sender.String(),
Amount: amount,
Amount: amount,
}
}

0 comments on commit 3cb6cf4

Please sign in to comment.