mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
cherry-pick geth 0feb999d3f
This commit is contained in:
parent
a8bf400a30
commit
08b5347182
2 changed files with 0 additions and 2 deletions
|
|
@ -118,7 +118,6 @@ func (e *gfP12) Mul(a, b *gfP12) *gfP12 {
|
||||||
func (e *gfP12) MulScalar(a *gfP12, b *gfP6) *gfP12 {
|
func (e *gfP12) MulScalar(a *gfP12, b *gfP6) *gfP12 {
|
||||||
e.x.Mul(&a.x, b)
|
e.x.Mul(&a.x, b)
|
||||||
e.y.Mul(&a.y, b)
|
e.y.Mul(&a.y, b)
|
||||||
|
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -137,7 +137,6 @@ func (e *gfP12) Mul(a, b *gfP12, pool *bnPool) *gfP12 {
|
||||||
func (e *gfP12) MulScalar(a *gfP12, b *gfP6, pool *bnPool) *gfP12 {
|
func (e *gfP12) MulScalar(a *gfP12, b *gfP6, pool *bnPool) *gfP12 {
|
||||||
e.x.Mul(a.x, b, pool)
|
e.x.Mul(a.x, b, pool)
|
||||||
e.y.Mul(a.y, b, pool)
|
e.y.Mul(a.y, b, pool)
|
||||||
|
|
||||||
return e
|
return e
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue