mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
9 lines
221 B
Go
9 lines
221 B
Go
|
package block
|
||
|
|
||
|
import "github.com/prysmaticlabs/prysm/shared/event"
|
||
|
|
||
|
// Notifier interface defines the methods of the service that provides block updates to consumers.
|
||
|
type Notifier interface {
|
||
|
BlockFeed() *event.Feed
|
||
|
}
|