mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-18 07:48:46 +00:00
10 lines
338 B
Go
10 lines
338 B
Go
|
package cache
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// Sync committee cache related errors
|
||
|
|
||
|
// ErrNonExistingSyncCommitteeKey when sync committee key (root) does not exist in cache.
|
||
|
var ErrNonExistingSyncCommitteeKey = errors.New("does not exist sync committee key")
|
||
|
var errNotSyncCommitteeIndexPosition = errors.New("not syncCommitteeIndexPosition struct")
|