Skip to content

Commit 10eb654

Browse files
authored
Merge pull request ethereum#23089 from holiman/fix_fuzzers
crypto: fix build directives
2 parents 4dde066 + a750bf8 commit 10eb654

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

crypto/secp256k1/panic_cb.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be found in
33
// the LICENSE file.
44

5-
// +build !gofuzz cgo
5+
// +build !gofuzz
6+
// +build cgo
67

78
package secp256k1
89

crypto/secp256k1/scalar_mult_cgo.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be found in
33
// the LICENSE file.
44

5-
// +build !gofuzz cgo
5+
// +build !gofuzz
6+
// +build cgo
67

78
package secp256k1
89

crypto/secp256k1/secp256.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// Use of this source code is governed by a BSD-style license that can be found in
33
// the LICENSE file.
44

5-
// +build !gofuzz cgo
5+
// +build !gofuzz
6+
// +build cgo
67

78
// Package secp256k1 wraps the bitcoin secp256k1 C library.
89
package secp256k1

0 commit comments

Comments
 (0)