Update bls_signature.md (#473)

fq2 param should be a list
This commit is contained in:
Jonny Rhea 2019-01-18 15:39:28 -06:00 committed by Justin
parent 12baced38d
commit 8d5c75c6fd

View File

@ -119,7 +119,7 @@ In the following `e` is the pairing function and `g` is the G1 generator with th
```python
g_x = 3685416753713387016781088315183077757961620795782546409894578378688607592378376318836054947676345821548104185464507
g_y = 1339506544944476473020471379941921221584933875938349620426543736416511423956333506472724655353366534992391756441569
g = Fq2(g_x, g_y)
g = Fq2([g_x, g_y])
```
### `bls_verify`