mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
fix bloombits deadlock
This commit is contained in:
parent
9b5443e9bd
commit
55370ce833
1 changed files with 1 additions and 3 deletions
|
|
@ -224,9 +224,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
|
|||
eth.blockchain.SetHead(compat.RewindTo)
|
||||
rawdb.WriteChainConfig(chainDb, genesisHash, chainConfig)
|
||||
}
|
||||
if !config.AncientPrune {
|
||||
eth.bloomIndexer.Start(eth.blockchain)
|
||||
}
|
||||
eth.bloomIndexer.Start(eth.blockchain)
|
||||
|
||||
if config.TxPool.Journal != "" {
|
||||
config.TxPool.Journal = stack.ResolvePath(config.TxPool.Journal)
|
||||
|
|
|
|||
Loading…
Reference in a new issue