diff --git a/eth/backend.go b/eth/backend.go index 71c1d0ebe822..a016bfef2fef 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -36,7 +36,6 @@ import ( "github.com/scroll-tech/go-ethereum/core/rawdb" "github.com/scroll-tech/go-ethereum/core/state/pruner" "github.com/scroll-tech/go-ethereum/core/txpool" - "github.com/scroll-tech/go-ethereum/core/txpool/blobpool" "github.com/scroll-tech/go-ethereum/core/txpool/legacypool" "github.com/scroll-tech/go-ethereum/core/types" "github.com/scroll-tech/go-ethereum/core/vm" @@ -231,17 +230,17 @@ func New(stack *node.Node, config *ethconfig.Config, l1Client sync_service.EthCl } eth.bloomIndexer.Start(eth.blockchain) - if config.BlobPool.Datadir != "" { - config.BlobPool.Datadir = stack.ResolvePath(config.BlobPool.Datadir) - } - blobPool := blobpool.New(config.BlobPool, eth.blockchain) + //if config.BlobPool.Datadir != "" { + // config.BlobPool.Datadir = stack.ResolvePath(config.BlobPool.Datadir) + //} + //blobPool := blobpool.New(config.BlobPool, eth.blockchain) if config.TxPool.Journal != "" { config.TxPool.Journal = stack.ResolvePath(config.TxPool.Journal) } legacyPool := legacypool.New(config.TxPool, eth.blockchain) - eth.txPool, err = txpool.New(new(big.Int).SetUint64(config.TxPool.PriceLimit), eth.blockchain, []txpool.SubPool{legacyPool, blobPool}) + eth.txPool, err = txpool.New(new(big.Int).SetUint64(config.TxPool.PriceLimit), eth.blockchain, []txpool.SubPool{legacyPool}) if err != nil { return nil, err }