Skip to content

Commit

Permalink
chore: debug failing integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
onikonychev committed Jan 13, 2025
1 parent 5977b7a commit ef106f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eth/rpc/backend/tx_logs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,11 @@ func (s *BackendSuite) assertTxLogsAndTxIndex(
}
ethereumTx, err := evm.EventEthereumTxFromABCIEvent(event)
s.Require().NoError(err)
s.Require().Equal(fmt.Sprintf("%d", txIndex), ethereumTx.Index)
s.Require().Equal(
fmt.Sprintf("%d", txIndex),
ethereumTx.Index,
"tx index mismatch, %s", txInfo,
)
}
}
if expectedEthTx && !foundEthTx {
Expand Down

0 comments on commit ef106f5

Please sign in to comment.