From 04d9aaf904c85cc3cfbc196b3b8cb1b4d0373159 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Wed, 30 Jun 2021 22:10:02 +0200 Subject: [PATCH] crypto: gofuzz build directives --- 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 1fe84509e76f..843360298010 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 067d32e13ce1..77c8a1db0be2 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