Files
prysm/beacon-chain/verification/verification_test.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

16 lines
210 B
Go

package verification
import (
"os"
"testing"
"github.com/OffchainLabs/prysm/v7/beacon-chain/blockchain/kzg"
)
func TestMain(t *testing.M) {
if err := kzg.Start(); err != nil {
os.Exit(1)
}
t.Run()
}