Merge pull request #3692 from kevaundray/patch-11

chore: Change g2_lincomb to take in G2Points
This commit is contained in:
Hsiao-Wei Wang 2024-04-19 15:30:22 +09:00 committed by GitHub
commit 0b312cae8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def bytes_to_cell(cell_bytes: Vector[Bytes32, FIELD_ELEMENTS_PER_CELL]) -> Cell:
#### `g2_lincomb` #### `g2_lincomb`
```python ```python
def g2_lincomb(points: Sequence[KZGCommitment], scalars: Sequence[BLSFieldElement]) -> Bytes96: def g2_lincomb(points: Sequence[G2Point], scalars: Sequence[BLSFieldElement]) -> Bytes96:
""" """
BLS multiscalar multiplication in G2. This function can be optimized using Pippenger's algorithm and variants. BLS multiscalar multiplication in G2. This function can be optimized using Pippenger's algorithm and variants.
""" """