From bbbeb7d8ba0f27e43f71775ff784af3f95cddfe9 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 30 Jun 2021 23:04:28 +0200 Subject: [PATCH] crypto: gofuzz build directives (#23137) --- crypto/signature_cgo.go | 2 +- crypto/signature_nocgo.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/signature_cgo.go b/crypto/signature_cgo.go index 1fe84509e7..8433602980 100644 --- a/crypto/signature_cgo.go +++ b/crypto/signature_cgo.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . -// +build !nacl,!js,cgo +// +build !nacl,!js,cgo,!gofuzz package crypto diff --git a/crypto/signature_nocgo.go b/crypto/signature_nocgo.go index 067d32e13c..77c8a1db0b 100644 --- a/crypto/signature_nocgo.go +++ b/crypto/signature_nocgo.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see . -// +build nacl js !cgo +// +build nacl js !cgo gofuzz package crypto