mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
b23f63a064
* v2 state initialize and semantic paths * ensure build * gaz changes to ignored build files * gaz
31 lines
1010 B
Python
31 lines
1010 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/interface",
|
|
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/pcli:__pkg__",
|
|
],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|