mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
49c2dd2cfc
* Move state notifier to statefeed * Updates to state notifier * Create state feed in beacon node * Formatting
13 lines
347 B
Python
13 lines
347 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"events.go",
|
|
"notifier.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/statefeed",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = ["//shared/event:go_default_library"],
|
|
)
|