mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
10 lines
329 B
Go
10 lines
329 B
Go
package coverage
|
|
|
|
import "github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
|
|
// AvailableBlocker can be used to check whether there is a finalized block in the db for the given slot.
|
|
// This interface is typically fulfilled by backfill.Store.
|
|
type AvailableBlocker interface {
|
|
AvailableBlock(primitives.Slot) bool
|
|
}
|