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

9 lines
245 B
Go
Raw Normal View History

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