Correct signature of get_blobs_and_kzg_commitments

This commit is contained in:
Dankrad Feist 2023-03-14 22:16:41 +00:00
parent ff7a6c5d0e
commit 2d4bfabceb
No known key found for this signature in database
GPG Key ID: 6815E6A20BEBBABA

View File

@ -45,7 +45,7 @@ Implementers may also retrieve blobs individually per transaction.
```python
def get_blobs_and_kzg_commitments(payload_id: PayloadId) -> \
Tuple[Sequence[BLSFieldElement], Sequence[KZGCommitment], Sequence[KZGProof]]:
Tuple[Sequence[Blob], Sequence[KZGCommitment], Sequence[KZGProof]]:
# pylint: disable=unused-argument
...
```