prysm-pulse/beacon-chain/core/statefeed/BUILD.bazel
Jim McDonald 49c2dd2cfc Move the state notifier to a different module (#4058)
* Move state notifier to statefeed

* Updates to state notifier

* Create state feed in beacon node

* Formatting
2019-11-19 16:15:48 -06:00

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"],
)