forked from cerc-io/plugeth
core: allow external processor (#25233)
This commit is contained in:
parent
f6ac80c507
commit
87bb5db675
@ -2375,9 +2375,10 @@ func (bc *BlockChain) InsertHeaderChain(chain []*types.Header, checkFreq int) (i
|
||||
return 0, err
|
||||
}
|
||||
|
||||
// SetBlockValidatorForTesting sets the current validator.
|
||||
// SetBlockValidatorAndProcessorForTesting sets the current validator and processor.
|
||||
// This method can be used to force an invalid blockchain to be verified for tests.
|
||||
// This method is unsafe and should only be used before block import starts.
|
||||
func (bc *BlockChain) SetBlockValidatorForTesting(v Validator) {
|
||||
func (bc *BlockChain) SetBlockValidatorAndProcessorForTesting(v Validator, p Processor) {
|
||||
bc.validator = v
|
||||
bc.processor = p
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user