Skip to content

Commit

Permalink
style: Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
drklee3 committed Feb 28, 2024
1 parent 4edd05e commit 7b89733
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func NewTestGenesisState(codec codec.Codec) simapp.GenesisState {

// generate genesis account
senderPrivKey := secp256k1.PrivKey{
Key: common.Hex2Bytes("6b65793a225c745c3337355c33363627365c333735476c5c3331375f5c323530305c3031375c303237375c3337365c3234315c3336355c323136247d475c3237316a3c5c3336365f785c3337353b5c3336305c3031362220"),
Key: common.Hex2Bytes("6b65793a225c745c3337355c33363627365c333735476c5c3331375f5c323530305c3031375c303237375c3337365c3234315c3336355c323136247d475c3237316a3c5c3336365f785c3337353b5c3336305c3031362220"), //nolint:lll
}
acc := authtypes.NewBaseAccount(senderPrivKey.PubKey().Address().Bytes(), senderPrivKey.PubKey(), 0, 0)
balance := banktypes.Balance{
Expand Down
5 changes: 4 additions & 1 deletion x/evm/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,10 @@ func (suite *TestSuite) MustTransferERC20Token(t require.TestingT, contractAddr,
return ercTransferTx
}

func (suite *TestSuite) TransferERC20Token(contractAddr, from, to common.Address, amount *big.Int) (*types.MsgEthereumTx, *types.MsgEthereumTxResponse, error) {
func (suite *TestSuite) TransferERC20Token(
contractAddr, from, to common.Address,
amount *big.Int,
) (*types.MsgEthereumTx, *types.MsgEthereumTxResponse, error) {
ctx := sdk.WrapSDKContext(suite.Ctx)
chainID := suite.App.EvmKeeper.ChainID()

Expand Down

0 comments on commit 7b89733

Please sign in to comment.