mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
rpc: add blockAccessListHash field to RPCMarshalHeader
This commit is contained in:
parent
e1521be67a
commit
97d188ff5b
1 changed files with 3 additions and 0 deletions
|
|
@ -969,6 +969,9 @@ func RPCMarshalHeader(head *types.Header) map[string]interface{} {
|
|||
if head.RequestsHash != nil {
|
||||
result["requestsHash"] = head.RequestsHash
|
||||
}
|
||||
if head.BlockAccessListHash != nil {
|
||||
result["blockAccessListHash"] = head.BlockAccessListHash
|
||||
}
|
||||
if head.SlotNumber != nil {
|
||||
result["slotNumber"] = head.SlotNumber
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue