prysm-pulse/shared/bls/herumi/init.go

13 lines
223 B
Go
Raw Normal View History

package herumi
import "github.com/herumi/bls-eth-go-binary/bls"
func init() {
if err := bls.Init(bls.BLS12_381); err != nil {
panic(err)
}
if err := bls.SetETHmode(bls.EthModeDraft07); err != nil {
panic(err)
}
}