aboutsummaryrefslogtreecommitdiffstats
path: root/go/bls
diff options
context:
space:
mode:
Diffstat (limited to 'go/bls')
-rw-r--r--go/bls/mcl.go4
1 files changed, 2 insertions, 2 deletions
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
}