prysm-pulse/beacon-chain/state/error.go

10 lines
248 B
Go
Raw Normal View History

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")
)