Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions core/blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -4209,6 +4209,7 @@ func (bc *BlockChain) ProcessBlockWithWitnesses(block *types.Block, witness *sta
// invalid headers are detected.
func (bc *BlockChain) startHeaderVerificationLoop() {
if bc.checker == nil {
log.Warn("chain validator service is not set, skipping header verification loop")
return // No checker available
}

Expand Down
1 change: 1 addition & 0 deletions eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ func New(stack *node.Node, config *ethconfig.Config) (*Ethereum, error) {
}

options.Overrides = &overrides
options.Checker = checker

// check if Parallel EVM is enabled
// if enabled, use parallel state processor
Expand Down
Loading