mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
c4c9a8465a
* use faster hash proto * Merge branch 'master' into faster-att-pool * gaz * Merge branch 'faster-att-pool' of github.com:prysmaticlabs/prysm into faster-att-pool * nil checks and failing tests * Merge refs/heads/master into faster-att-pool * Merge refs/heads/master into faster-att-pool * Merge refs/heads/master into faster-att-pool * Merge refs/heads/master into faster-att-pool * Merge refs/heads/master into faster-att-pool * Fix * Merge branch 'faster-att-pool' of github.com:prysmaticlabs/prysm into faster-att-pool * Fix tests
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"aggregated.go",
|
|
"block.go",
|
|
"forkchoice.go",
|
|
"kv.go",
|
|
"unaggregated.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/operations/attestations/kv",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/core/helpers:go_default_library",
|
|
"//beacon-chain/state:go_default_library",
|
|
"//shared/hashutil:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"aggregated_test.go",
|
|
"benchmark_test.go",
|
|
"block_test.go",
|
|
"forkchoice_test.go",
|
|
"unaggregated_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|