mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
12 lines
265 B
Go
12 lines
265 B
Go
|
package iface
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// ErrExistingGenesisState is an error when the user attempts to save a different genesis state
|
||
|
// when one already exists in a database.
|
||
|
ErrExistingGenesisState = errors.New("genesis state exists already in the DB")
|
||
|
)
|