mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
bfbf693660
Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
11 lines
467 B
Go
11 lines
467 B
Go
package forks
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
// ErrVersionNotFound indicates the config package couldn't determine the version for an epoch using the fork schedule.
|
|
var ErrVersionNotFound = errors.New("could not find an entry in the fork schedule")
|
|
|
|
// ErrNoPreviousVersion indicates that a version prior to the given version could not be found, because the given version
|
|
// is the first one in the list
|
|
var ErrNoPreviousVersion = errors.New("no previous version")
|