mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
12 lines
292 B
Go
12 lines
292 B
Go
|
package bls
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/shared/bls/common"
|
||
|
)
|
||
|
|
||
|
// ErrZeroKey describes an error due to a zero secret key.
|
||
|
var ErrZeroKey = common.ErrZeroKey
|
||
|
|
||
|
// ErrInfinitePubKey describes an error due to an infinite public key.
|
||
|
var ErrInfinitePubKey = common.ErrInfinitePubKey
|