Skip to content

Commit

Permalink
Fix transactions bloom indexer not running without archive
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname committed Sep 9, 2024
1 parent 11fbad9 commit 08e8cbb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
return nil, err
}
eth.bloomIndexer.Start(eth.blockchain)

if eth.ArchiveMode() {
eth.bloomTransactionsIndexer.Start(eth.blockchain)
}
eth.bloomTransactionsIndexer.Start(eth.blockchain)

if config.BlobPool.Datadir != "" {
config.BlobPool.Datadir = stack.ResolvePath(config.BlobPool.Datadir)
Expand Down

0 comments on commit 08e8cbb

Please sign in to comment.