Skip to content

Commit

Permalink
crypto: fix build directives
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman committed Jun 22, 2021
1 parent 5228b2a commit a750bf8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion crypto/secp256k1/panic_cb.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.

// +build !gofuzz cgo
// +build !gofuzz
// +build cgo

package secp256k1

Expand Down
3 changes: 2 additions & 1 deletion crypto/secp256k1/scalar_mult_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.

// +build !gofuzz cgo
// +build !gofuzz
// +build cgo

package secp256k1

Expand Down
3 changes: 2 additions & 1 deletion crypto/secp256k1/secp256.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.

// +build !gofuzz cgo
// +build !gofuzz
// +build cgo

// Package secp256k1 wraps the bitcoin secp256k1 C library.
package secp256k1
Expand Down

0 comments on commit a750bf8

Please sign in to comment.