prysm-pulse/beacon-chain/sync/peerstatus/BUILD.bazel
Preston Van Loon 9fcc6fc201
Wait until fully synced to process pubsub messages (#3514)
* context timeout for pubsub message processing

* add syncing check

* gofmt

* use a global cache

* lint

* fmt

* fix conflicts

* revert change

* gaz
2019-09-20 10:54:32 -07:00

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