mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
b6bd8ba63d
* starting to get feedback * better name * export the necessary variables * finished implementation in AttestationParticipants * refactor deopendency issue * gaz and fixed cache test * fixed all the tests and lint * clean up part 1 * lint * fixed test * fixed visibility * cache tests for AttestationParticipants
21 lines
671 B
Python
21 lines
671 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["committee.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/cache",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//shared/params:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
|
"@io_k8s_client_go//tools/cache:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["committee_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|