Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Oct 9, 2024
1 parent d95ca8a commit 66097fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ante/eth_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (suite *AnteTestSuite) TestNewEthAccountVerificationDecorator() {

func (suite *AnteTestSuite) TestEthNonceVerificationDecorator() {
suite.SetupTest()
dec := ante.NewEthIncrementSenderSequenceDecorator(suite.app.AccountKeeper)
dec := ante.NewEthIncrementSenderSequenceDecorator(suite.app.AccountKeeper, false)

addr := tests.GenerateAddress()

Expand Down Expand Up @@ -408,7 +408,7 @@ func (suite *AnteTestSuite) TestCanTransferDecorator() {
}

func (suite *AnteTestSuite) TestEthIncrementSenderSequenceDecorator() {
dec := ante.NewEthIncrementSenderSequenceDecorator(suite.app.AccountKeeper)
dec := ante.NewEthIncrementSenderSequenceDecorator(suite.app.AccountKeeper, false)
addr, privKey := tests.NewAddrKey()

contract := evmtypes.NewTxContract(suite.app.EvmKeeper.ChainID(), 0, big.NewInt(10), 1000, big.NewInt(1), nil, nil, nil, nil)
Expand Down

0 comments on commit 66097fb

Please sign in to comment.