prysm-pulse/beacon-chain/core/feed/block/notifier.go
Raul Jordan 11a1f681e0
Move Shared Packages Into Async/ (#9620)
* async packages

* change pkg

* build

* working

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-18 17:26:11 +00:00

9 lines
220 B
Go

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