mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
10 lines
293 B
Go
10 lines
293 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")
|
||
|
|
||
|
// ErrInfinitePubKey describes an error due to an infinite public key.
|
||
|
var ErrInfinitePubKey = errors.New("received an infinite public key")
|