From 32eb1b3aa4b924985db2de7265be1fa64f9df35d Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Wed, 14 Jun 2017 05:49:56 +0900 Subject: fix Fr/Gt.IsOne --- go/bls/mcl.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'go') diff --git a/go/bls/mcl.go b/go/bls/mcl.go index 0e3a09e..b8130e2 100644 --- a/go/bls/mcl.go +++ b/go/bls/mcl.go @@ -118,7 +118,7 @@ func (x *Fr) IsZero() bool { } // IsOne -- -func (x *Fr) IsOne(rhs *Fr) bool { +func (x *Fr) IsOne() bool { return C.mclBnFr_isOne(x.getPointer()) == 1 } @@ -452,7 +452,7 @@ func (x *GT) IsZero() bool { } // IsOne -- -func (x *GT) IsOne(rhs *GT) bool { +func (x *GT) IsOne() bool { return C.mclBnGT_isOne(x.getPointer()) == 1 } -- cgit v1.2.3