prysm-pulse/beacon-chain/core/feed/block/notifier.go

9 lines
220 B
Go
Raw Normal View History

package block
import "github.com/prysmaticlabs/prysm/async/event"
// Notifier interface defines the methods of the service that provides block updates to consumers.
type Notifier interface {
BlockFeed() *event.Feed
}