Apply suggestion from @kevaundray

This commit is contained in:
kevaundray 2026-03-13 19:38:11 +00:00 committed by GitHub
parent 8d2e4ab796
commit 33f77c4d7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,7 +137,7 @@ func (it *insertIterator) next() (*types.Block, error) {
if it.bc.HasBlockAndState(block.Hash(), block.NumberU64()) {
return block, ErrKnownBlock
}
// Verify uncle blocks against chain history (pre-mereg only)
// Verify uncle blocks against chain history (pre-merge only)
if err := it.bc.engine.VerifyUncles(it.bc, block); err != nil {
return block, err
}