diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index a32145918c..9416216f8d 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1345,6 +1345,9 @@ func RPCMarshalHeader(head *types.Header) map[string]interface{} { if head.ExcessBlobGas != nil { result["excessBlobGas"] = hexutil.Uint64(*head.ExcessBlobGas) } + if head.BeaconRoot != nil { + result["parentBeaconBlockRoot"] = head.BeaconRoot + } return result }