Skip to content

Commit

Permalink
miner/payload_builder_test.go: fix name of payload building test (#423)
Browse files Browse the repository at this point in the history
* fix name of test

* Update miner/payload_building_test.go

---------

Co-authored-by: Sebastian Stammler <[email protected]>
  • Loading branch information
roberto-bayardo and sebastianst authored Nov 7, 2024
1 parent 0891f5a commit 1e60ba8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miner/payload_building_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ func TestDAFilters(t *testing.T) {
// The first transaction has size 100, all other DA test txs are bigger due to random Data, so should get filtered.
t.Run("with-tx-filter-all-but-first", func(t *testing.T) { testDAFilters(t, big.NewInt(100), nil, 1) })
t.Run("with-block-filter-all-but-first", func(t *testing.T) { testDAFilters(t, nil, big.NewInt(100), 1) })
// Zero/nil values for these parameters means we should mean never filter
// Zero/nil values for these parameters means we should never filter
t.Run("with-zero-tx-filters", func(t *testing.T) { testDAFilters(t, big.NewInt(0), big.NewInt(0), totalTxs) })
t.Run("with-zero-tx-filters", func(t *testing.T) { testDAFilters(t, nil, nil, totalTxs) })
t.Run("with-nil-tx-filters", func(t *testing.T) { testDAFilters(t, nil, nil, totalTxs) })
}

func holoceneConfig() *params.ChainConfig {
Expand Down

0 comments on commit 1e60ba8

Please sign in to comment.