mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
49c2dd2cfc
* Move state notifier to statefeed * Updates to state notifier * Create state feed in beacon node * Formatting
9 lines
225 B
Go
9 lines
225 B
Go
package statefeed
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/event"
|
|
|
|
// Notifier interface defines the methods of the service that provides state updates to consumers.
|
|
type Notifier interface {
|
|
StateFeed() *event.Feed
|
|
}
|