mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
consensus/beacon: fix log
This commit is contained in:
parent
97c85055b5
commit
faeece9b60
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue