mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
9fcc6fc201
* context timeout for pubsub message processing * add syncing check * gofmt * use a global cache * lint * fmt * fix conflicts * revert change * gaz
13 lines
414 B
Python
13 lines
414 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["peer_statuses.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/sync/peerstatus",
|
|
visibility = ["//beacon-chain/sync:__subpackages__"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"@com_github_libp2p_go_libp2p_core//peer:go_default_library",
|
|
],
|
|
)
|