Fix type annotation in verify_aggregate_kzg_proof

This commit is contained in:
Ramana Kumar 2022-11-19 09:17:11 +00:00
parent 208da34ac4
commit 19c8f21b63
No known key found for this signature in database
GPG Key ID: ED471C788B900433
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ def compute_aggregate_kzg_proof(blobs: Sequence[Blob]) -> KZGProof:
```python ```python
def verify_aggregate_kzg_proof(blobs: Sequence[Blob], def verify_aggregate_kzg_proof(blobs: Sequence[Blob],
expected_kzg_commitments: Sequence[KZGCommitment], expected_kzg_commitments: Sequence[KZGCommitment],
kzg_aggregated_proof: KZGCommitment) -> bool: kzg_aggregated_proof: KZGProof) -> bool:
""" """
Public method. Public method.
""" """