consensus: remove seal verification from the consensus engine interface (#22274)
This commit is contained in:
@ -731,7 +731,7 @@ func TestConcurrentDiskCacheGeneration(t *testing.T) {
|
||||
defer pend.Done()
|
||||
ethash := New(Config{cachedir, 0, 1, false, "", 0, 0, false, ModeNormal, nil}, nil, false)
|
||||
defer ethash.Close()
|
||||
if err := ethash.VerifySeal(nil, block.Header()); err != nil {
|
||||
if err := ethash.verifySeal(nil, block.Header(), false); err != nil {
|
||||
t.Errorf("proc %d: block verification failed: %v", idx, err)
|
||||
}
|
||||
}(i)
|
||||
|
Reference in New Issue
Block a user