Update specs/_features/eip7594/polynomial-commitments-sampling.md

Co-authored-by: Justin Traglia <95511699+jtraglia@users.noreply.github.com>
This commit is contained in:
kevaundray 2024-04-18 20:26:46 +01:00 committed by GitHub
parent d913140164
commit 1669723adf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ def compute_kzg_proof_multi_impl(
- Z(X) is the degree `k` polynomial that evaluates to zero on all `k` points
"""
# For all points, compute the evaluation of those points.
# For all points, compute the evaluation of those points
ys = [evaluate_polynomialcoeff(polynomial_coeff, z) for z in zs]
# Compute r(X)
interpolation_polynomial = interpolate_polynomialcoeff(zs, ys)