From 33f77c4d7c690d61e75fb32e396a317bd591ccf4 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Fri, 13 Mar 2026 19:38:11 +0000 Subject: [PATCH] Apply suggestion from @kevaundray --- core/blockchain_insert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain_insert.go b/core/blockchain_insert.go index 6a981fcfa7..1601c72a00 100644 --- a/core/blockchain_insert.go +++ b/core/blockchain_insert.go @@ -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 }