mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
10 lines
248 B
Go
10 lines
248 B
Go
|
package state
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// ErrNilValidatorsInState returns when accessing validators in the state while the state has a
|
||
|
// nil slice for the validators field.
|
||
|
ErrNilValidatorsInState = errors.New("state has nil validator slice")
|
||
|
)
|