mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
10 lines
329 B
Go
10 lines
329 B
Go
|
package coverage
|
||
|
|
||
|
import "github.com/prysmaticlabs/prysm/v4/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
|
||
|
}
|