mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
168cffb0dd
* check for herumi * clean up * fix tests * fix
17 lines
614 B
Go
17 lines
614 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
// ErrZeroKey describes an error due to a zero secret key.
|
|
var ErrZeroKey = errors.New("received secret key is zero")
|
|
|
|
// ErrSecretUnmarshal describes an error which happens during unmarshalling
|
|
// a secret key.
|
|
var ErrSecretUnmarshal = errors.New("could not unmarshal bytes into secret key")
|
|
|
|
// ErrInfinitePubKey describes an error due to an infinite public key.
|
|
var ErrInfinitePubKey = errors.New("received an infinite public key")
|
|
|
|
// ErrInfiniteSignature describes an error due to an infinite signature.
|
|
var ErrInfiniteSignature = errors.New("received an infinite signature")
|