mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
11a1f681e0
* async packages * change pkg * build * working Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
9 lines
220 B
Go
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
|
|
}
|