From 3cb6cf460db4c8888bcc95957e62e4e30931412d Mon Sep 17 00:00:00 2001 From: tnv1 Date: Sun, 16 Jun 2024 00:13:19 +0700 Subject: [PATCH] Fix lint --- x/feeabs/types/msg.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x/feeabs/types/msg.go b/x/feeabs/types/msg.go index 417affb..5384ced 100644 --- a/x/feeabs/types/msg.go +++ b/x/feeabs/types/msg.go @@ -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, } } @@ -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, } }