From faeece9b601b3e6d54cdc93207e3d19cb51618bd Mon Sep 17 00:00:00 2001 From: Gary Rong Date: Tue, 31 Mar 2026 10:32:02 +0800 Subject: [PATCH] consensus/beacon: fix log --- consensus/beacon/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/beacon/consensus.go b/consensus/beacon/consensus.go index c4dfd4d36b..c4a284d485 100644 --- a/consensus/beacon/consensus.go +++ b/consensus/beacon/consensus.go @@ -286,7 +286,7 @@ func (beacon *Beacon) verifyHeader(chain consensus.ChainHeaderReader, header, pa } } else { if header.BlockAccessListHash != nil { - return fmt.Errorf("invalid block access list hash: have %x, expected nil", header.BlockAccessListHash) + return fmt.Errorf("invalid block access list hash: have %x, expected nil", *header.BlockAccessListHash) } if header.SlotNumber != nil { return fmt.Errorf("invalid slotNumber: have %d, expected nil", *header.SlotNumber)