Skip to content

Commit a996d11

Browse files
committed
cleanup
1 parent 8455a9d commit a996d11

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

evmd/tests/integration/balance_handler/balance_handler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (s *BalanceHandlerTestSuite) TestRecursivePrecompileCallsWithDebugPrecompil
9191
s.Require().NoError(err, "callback transaction should succeed")
9292
s.Require().False(res.IsErr(), "callback should not fail: %s", res.Events)
9393

94-
s.Require().Equal(len(res.Events), 15, "callback should have 15 events")
94+
s.Require().Equal(15, len(res.Events), "callback should have 15 events")
9595
debug_count := 0
9696
for _, event := range res.Events {
9797
if event.Type == "debug_precompile" {

testutil/ibc/chain.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@ func (chain *TestChain) SendEvmTx(
440440

441441
res, err := app.FinalizeBlock(&req)
442442
require.NoError(chain.TB, err)
443-
res.TxResults = types.PatchTxResponses(res.TxResults)
444443

445444
chain.commitBlock(res)
446445

@@ -509,7 +508,6 @@ func (chain *TestChain) SendMsgsWithSender(sender SenderAccount, msgs ...sdk.Msg
509508
if err != nil {
510509
return nil, err
511510
}
512-
resp.TxResults = types.PatchTxResponses(resp.TxResults)
513511

514512
chain.commitBlock(resp)
515513

0 commit comments

Comments
 (0)