We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e6085 commit bc3ee13Copy full SHA for bc3ee13
specs/electra/validator.md
@@ -54,7 +54,7 @@ class GetPayloadResponse(object):
54
execution_payload: ExecutionPayload
55
block_value: uint256
56
blobs_bundle: BlobsBundle
57
- execution_requests: list[bytes] # [New in Electra]
+ execution_requests: List[bytes] # [New in Electra]
58
```
59
60
## Containers
@@ -90,7 +90,7 @@ has been built since the corresponding call to `notify_forkchoice_updated` metho
90
```python
91
def get_payload(self: ExecutionEngine, payload_id: PayloadId) -> GetPayloadResponse:
92
"""
93
- Return ExecutionPayload, uint256, BlobsBundle and list[bytes] objects.
+ Return ExecutionPayload, uint256, BlobsBundle and List[bytes] objects.
94
95
# pylint: disable=unused-argument
96
...
0 commit comments