github.com/prysmaticlabs/prysm@v1.4.4/beacon-chain/db/iface/errors.go (about)

     1  package iface
     2  
     3  import (
     4  	"errors"
     5  )
     6  
     7  var (
     8  	// ErrExistingGenesisState is an error when the user attempts to save a different genesis state
     9  	// when one already exists in a database.
    10  	ErrExistingGenesisState = errors.New("genesis state exists already in the DB")
    11  )