mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 14:58:46 +00:00
21 lines
666 B
Python
21 lines
666 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
testonly = True,
|
||
|
srcs = [
|
||
|
"getters.go",
|
||
|
"getters_validator.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/state/testing",
|
||
|
visibility = ["//beacon-chain/state:__subpackages__"],
|
||
|
deps = [
|
||
|
"//beacon-chain/state:go_default_library",
|
||
|
"//config/fieldparams:go_default_library",
|
||
|
"//proto/prysm/v1alpha1:go_default_library",
|
||
|
"//testing/assert:go_default_library",
|
||
|
"//testing/require:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
],
|
||
|
)
|