mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "crypto/bn256: eliminate dead store (#27944)"
This reverts commit 98fee83322.
This commit is contained in:
parent
2443349b31
commit
7817052946
1 changed files with 2 additions and 1 deletions
|
|
@ -199,8 +199,9 @@ func miller(q *twistPoint, p *curvePoint) *gfP12 {
|
|||
r = newR
|
||||
|
||||
r2.Square(&minusQ2.y)
|
||||
a, b, c, _ = lineFunctionAdd(r, minusQ2, bAffine, r2)
|
||||
a, b, c, newR = lineFunctionAdd(r, minusQ2, bAffine, r2)
|
||||
mulLine(ret, a, b, c)
|
||||
r = newR
|
||||
|
||||
return ret
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue