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

9 lines
223 B
Go
Raw Normal View History

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