mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
65d920e13a
* Initial implementation of state feed * Add instructions on adding new events * Tidy up log messages * Tidy up mock * Update beacon-chain/core/statefeed/events.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Update beacon-chain/core/statefeed/events.go Co-Authored-By: terence tsao <terence@prysmaticlabs.com> * Remove unused BlockReceivedData * Rename BlockHash to BlockRoot in BlockProcessedData * Punctuation * Use correct root for block processed event * StateFeeder -> StateNotifier; fix up tests. * Add Verified flag to BlockProcessed event * Fix visibility in Bazel
9 lines
259 B
Python
9 lines
259 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["events.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/statefeed",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
)
|