Merge pull request #23089 from holiman/fix_fuzzers

crypto: fix build directives
pull/23094/head
Péter Szilágyi 3 years ago committed by GitHub
commit 10eb654f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      crypto/secp256k1/panic_cb.go
  2. 3
      crypto/secp256k1/scalar_mult_cgo.go
  3. 3
      crypto/secp256k1/secp256.go

@ -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

@ -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

@ -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

Loading…
Cancel
Save