diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 79f2965b05..bc6e85c3e6 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1436,14 +1436,6 @@ func RPCMarshalBlock(block *types.Block, inclTx bool, fullTx bool, config *param if block.Withdrawals() != nil { fields["withdrawals"] = block.Withdrawals() } - if block.Requests() != nil { - // Convert requests to hex. - hexreq := make([]hexutil.Bytes, len(block.Requests())) - for i, req := range block.Requests() { - hexreq[i] = req - } - fields["requests"] = hexreq - } return fields }