mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
7 lines
251 B
Go
7 lines
251 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")
|