From 213429e240362f730ae5fd39897bc256897d6c0e Mon Sep 17 00:00:00 2001 From: Kevaundray Wedderburn Date: Mon, 16 Mar 2026 11:35:57 +0000 Subject: [PATCH] remove if statement --- consensus/beacon/consensus.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/consensus/beacon/consensus.go b/consensus/beacon/consensus.go index 45a480c50e..2ae58100d6 100644 --- a/consensus/beacon/consensus.go +++ b/consensus/beacon/consensus.go @@ -192,10 +192,6 @@ func (beacon *Beacon) VerifyUncles(chain consensus.ChainReader, block *types.Blo if !beacon.IsPoSHeader(block.Header()) { return beacon.ethone.VerifyUncles(chain, block) } - // Verify that there is no uncle block. It's explicitly disabled in the beacon - if len(block.Uncles()) > 0 { - return errTooManyUncles - } return nil }