crypto/kzg4844: remove kzg initialization

This commit is contained in:
MariusVanDerWijden 2025-06-12 11:00:16 +02:00
parent 9e0611b660
commit 1d5b616825

View file

@ -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).