prysm-pulse/beacon-chain/core/statefeed/notifier.go

9 lines
225 B
Go
Raw Normal View History

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