mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
7bc22e4ddf
* Add sync committee index cache * Update BUILD.bazel Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
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")
|