Merge pull request #3260 from kevaundray/patch-6

EIP4844: Fix typo in polynomial-commitments.md
This commit is contained in:
Hsiao-Wei Wang 2023-02-20 22:44:23 +08:00 committed by GitHub
commit 02412d370f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ def compute_quotient_eval_within_domain(z: BLSFieldElement,
```python ```python
def compute_kzg_proof_impl(polynomial: Polynomial, z: BLSFieldElement) -> KZGProof: def compute_kzg_proof_impl(polynomial: Polynomial, z: BLSFieldElement) -> KZGProof:
""" """
Helper function for compute_kzg_proof() and compute_aggregate_kzg_proof(). Helper function for `compute_kzg_proof()` and `compute_blob_kzg_proof()`.
""" """
roots_of_unity_brp = bit_reversal_permutation(ROOTS_OF_UNITY) roots_of_unity_brp = bit_reversal_permutation(ROOTS_OF_UNITY)