@@ -38,7 +38,6 @@ import (
38
38
"github.com/ethereum/go-ethereum/core/types"
39
39
"github.com/ethereum/go-ethereum/crypto"
40
40
"github.com/ethereum/go-ethereum/crypto/kzg4844"
41
- "github.com/ethereum/go-ethereum/log"
42
41
"github.com/ethereum/go-ethereum/params"
43
42
"github.com/ethereum/go-ethereum/rlp"
44
43
"github.com/holiman/billy"
@@ -314,7 +313,7 @@ func verifyPoolInternals(t *testing.T, pool *BlobPool) {
314
313
// - 8. Fully duplicate transactions (matching hash) must be dropped
315
314
// - 9. Duplicate nonces from the same account must be dropped
316
315
func TestOpenDrops (t * testing.T ) {
317
- log .SetDefault (log .NewLogger (log .NewTerminalHandlerWithLevel (os .Stderr , log .LevelTrace , true )))
316
+ // log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelTrace, true)))
318
317
319
318
// Create a temporary folder for the persistent backend
320
319
storage , _ := os .MkdirTemp ("" , "blobpool-" )
@@ -637,7 +636,7 @@ func TestOpenDrops(t *testing.T) {
637
636
// - 2. Eviction thresholds are calculated correctly for the sequences
638
637
// - 3. Balance usage of an account is totals across all transactions
639
638
func TestOpenIndex (t * testing.T ) {
640
- log .SetDefault (log .NewLogger (log .NewTerminalHandlerWithLevel (os .Stderr , log .LevelTrace , true )))
639
+ // log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelTrace, true)))
641
640
642
641
// Create a temporary folder for the persistent backend
643
642
storage , _ := os .MkdirTemp ("" , "blobpool-" )
@@ -726,7 +725,7 @@ func TestOpenIndex(t *testing.T) {
726
725
// Tests that after indexing all the loaded transactions from disk, a price heap
727
726
// is correctly constructed based on the head basefee and blobfee.
728
727
func TestOpenHeap (t * testing.T ) {
729
- log .SetDefault (log .NewLogger (log .NewTerminalHandlerWithLevel (os .Stderr , log .LevelTrace , true )))
728
+ // log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelTrace, true)))
730
729
731
730
// Create a temporary folder for the persistent backend
732
731
storage , _ := os .MkdirTemp ("" , "blobpool-" )
@@ -813,7 +812,7 @@ func TestOpenHeap(t *testing.T) {
813
812
// Tests that after the pool's previous state is loaded back, any transactions
814
813
// over the new storage cap will get dropped.
815
814
func TestOpenCap (t * testing.T ) {
816
- log .SetDefault (log .NewLogger (log .NewTerminalHandlerWithLevel (os .Stderr , log .LevelTrace , true )))
815
+ // log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelTrace, true)))
817
816
818
817
// Create a temporary folder for the persistent backend
819
818
storage , _ := os .MkdirTemp ("" , "blobpool-" )
@@ -905,7 +904,7 @@ func TestOpenCap(t *testing.T) {
905
904
// specific to the blob pool. It does not do an exhaustive transaction validity
906
905
// check.
907
906
func TestAdd (t * testing.T ) {
908
- log .SetDefault (log .NewLogger (log .NewTerminalHandlerWithLevel (os .Stderr , log .LevelTrace , true )))
907
+ // log.SetDefault(log.NewLogger(log.NewTerminalHandlerWithLevel(os.Stderr, log.LevelTrace, true)))
909
908
910
909
// seed is a helper tuple to seed an initial state db and pool
911
910
type seed struct {
0 commit comments