We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3493cd commit 506869fCopy full SHA for 506869f
block/base/default_test.go
@@ -231,9 +231,8 @@ func TestDefaultMempool_Integration(t *testing.T) {
231
232
err = mp.Insert(ctx, duplicateTx)
233
require.NoError(t, err)
234
- require.Equal(t, 3, mp.CountTx()) // Count should remain the same
235
- require.True(t, mp.Contains(txs[0])) // Original transaction should still be there
236
- require.False(t, mp.Contains(duplicateTx)) // Duplicate should not be added
+ require.Equal(t, 3, mp.CountTx()) // Count should remain the same
+ require.True(t, mp.Contains(txs[0])) // Original transaction should still be there
237
238
// Verify FIFO order is maintained (no changes)
239
var collectedTxs []sdk.Tx
0 commit comments