mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
12 lines
286 B
Go
12 lines
286 B
Go
// +build linux,amd64
|
|
|
|
package blst
|
|
|
|
import blst "github.com/supranational/blst/bindings/go"
|
|
|
|
// Internal types for blst.
|
|
type blstPublicKey = blst.P1Affine
|
|
type blstSignature = blst.P2Affine
|
|
type blstAggregateSignature = blst.P2Aggregate
|
|
type blstAggregatePublicKey = blst.P1Aggregate
|