Merge pull request #3120 from xrchz/fix-type-annot
Fix type annotation in verify_aggregate_kzg_proof
This commit is contained in:
commit
3d235740e5
|
@ -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.
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue