mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
5c90038007
* adds feature flag * aggregations/attestation package * better tests * bazel visibility issues * removes redundant code Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
15 lines
512 B
Python
15 lines
512 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["bitlistutils.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/aggregation/testing",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/bls:go_default_library",
|
|
"//shared/roughtime:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|