github.com/prysmaticlabs/prysm@v1.4.4/beacon-chain/core/feed/state/notifier.go (about) 1 package state 2 3 import "github.com/prysmaticlabs/prysm/shared/event" 4 5 // Notifier interface defines the methods of the service that provides state updates to consumers. 6 type Notifier interface { 7 StateFeed() *event.Feed 8 }