Skip to content

Commit

Permalink
bindings/go/blst_minpk.tgo: resolve golint nits.
Browse files Browse the repository at this point in the history
  • Loading branch information
dot-asm committed Mar 16, 2024
1 parent 09bb06f commit 704c7f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bindings/go/blst.go
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ func (_ *P2Affine) MultipleAggregateVerify(sigs []*P2Affine,
}

paramsFn :=
func(work uint32, sig *P2Affine, pk *P1Affine, rand *Scalar) (
func(work uint32, _ *P2Affine, _ *P1Affine, rand *Scalar) (
*P2Affine, *P1Affine, *Scalar, []byte) {
randFn(rand)
var aug []byte
Expand Down Expand Up @@ -1399,7 +1399,7 @@ func (_ *P1Affine) MultipleAggregateVerify(sigs []*P1Affine,
}

paramsFn :=
func(work uint32, sig *P1Affine, pk *P2Affine, rand *Scalar) (
func(work uint32, _ *P1Affine, _ *P2Affine, rand *Scalar) (
*P1Affine, *P2Affine, *Scalar, []byte) {
randFn(rand)
var aug []byte
Expand Down
2 changes: 1 addition & 1 deletion bindings/go/blst_minpk.tgo
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func (_ *P2Affine) MultipleAggregateVerify(sigs []*P2Affine,
}

paramsFn :=
func(work uint32, sig *P2Affine, pk *P1Affine, rand *Scalar) (
func(work uint32, _ *P2Affine, _ *P1Affine, rand *Scalar) (
*P2Affine, *P1Affine, *Scalar, []byte) {
randFn(rand)
var aug []byte
Expand Down

0 comments on commit 704c7f6

Please sign in to comment.