Skip to content

Commit

Permalink
comments fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goran-ethernal committed Mar 27, 2024
1 parent 267376a commit 866d3ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions e2e/txpool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,12 @@ func TestTxPool_RecoverableError(t *testing.T) {
secondTx, err := client.GetTransactionByHash(hashes[1])
require.NoError(t, err)
require.NotNil(t, secondTx)

// first two are in one block
require.Equal(t, firstTx.BlockNumber, secondTx.BlockNumber)

// last tx is included in next block
require.NotEqual(t, secondTx.BlockNumber, receipt.BlockNumber)
}

func TestTxPool_GetPendingTx(t *testing.T) {
Expand Down
File renamed without changes.

0 comments on commit 866d3ad

Please sign in to comment.