crypto: use pure Go signature implementation in tinygo #31878 (#1226)

tinygo is having problems compiling the C implementation

Co-authored-by: Ömer Faruk Irmak <omerfirmak@gmail.com>
This commit is contained in:
Daniel Liu 2025-07-26 17:33:55 +08:00 committed by GitHub
parent badb46ce2b
commit d06f219dc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -14,8 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
//go:build !nacl && !js && !wasip1 && cgo && !gofuzz
// +build !nacl,!js,!wasip1,cgo,!gofuzz
//go:build !nacl && !js && !wasip1 && cgo && !gofuzz && !tinygo
// +build !nacl,!js,!wasip1,cgo,!gofuzz,!tinygo
package crypto

View file

@ -14,8 +14,8 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
//go:build nacl || js || wasip1 || !cgo || gofuzz
// +build nacl js wasip1 !cgo gofuzz
//go:build nacl || js || wasip1 || !cgo || gofuzz || tinygo
// +build nacl js wasip1 !cgo gofuzz tinygo
package crypto