mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
9145310647
* get rid of v2 in prysm codebase * replace block2 * builds * terence comments * gazelle
31 lines
987 B
Python
31 lines
987 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"altair.go",
|
|
"phase0.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/state",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//fuzz:__pkg__",
|
|
"//proto/testing:__subpackages__",
|
|
"//shared/aggregation:__subpackages__",
|
|
"//shared/benchutil:__pkg__",
|
|
"//shared/depositutil:__subpackages__",
|
|
"//shared/testutil:__pkg__",
|
|
"//slasher/rpc:__subpackages__",
|
|
"//spectest:__subpackages__",
|
|
"//tools/benchmark-files-gen:__pkg__",
|
|
"//tools/exploredb:__pkg__",
|
|
"//tools/pcli:__pkg__",
|
|
],
|
|
deps = [
|
|
"//proto/eth/v1:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|