2019-12-07 17:57:26 +00:00
|
|
|
package state
|
2019-11-19 22:15:48 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|