From 1d5b61682533cd376a0a989c85490d10d882de36 Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Thu, 12 Jun 2025 11:00:16 +0200 Subject: [PATCH] crypto/kzg4844: remove kzg initialization --- crypto/kzg4844/kzg4844.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crypto/kzg4844/kzg4844.go b/crypto/kzg4844/kzg4844.go index a002affda47f..baf9c9655b90 100644 --- a/crypto/kzg4844/kzg4844.go +++ b/crypto/kzg4844/kzg4844.go @@ -86,10 +86,6 @@ type Claim [32]byte // useCKZG controls whether the cryptography should use the Go or C backend. var useCKZG atomic.Bool -func init() { - UseCKZG(true) -} - // UseCKZG can be called to switch the default Go implementation of KZG to the C // library if for some reason the user wishes to do so (e.g. consensus bug in one // or the other).