mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
a0ca4a67b0
* remove api/gateway/apimiddleware * fix errors in api/gateway * remove beacon-chain/rpc/apimiddleware * fix errors in api/client/beacon * fix errors in validator/client/beacon-api * fix errors in beacon-chain/node * fix errors in validator/node * fix errors in cmd/prysmctl/validator * fix errors in testing/endtoend * fix all other code * remove comment * fix tests --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
24 lines
857 B
Python
24 lines
857 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = [
|
|
"altair_beacon_block_test_helpers.go",
|
|
"bellatrix_beacon_block_test_helpers.go",
|
|
"capella_beacon_block_test_helpers.go",
|
|
"deneb_beacon_block_test_helpers.go",
|
|
"phase0_beacon_block_test_helpers.go",
|
|
"test_helpers.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/validator/client/beacon-api/test-helpers",
|
|
visibility = ["//validator:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/rpc/eth/shared:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//proto/engine/v1:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
],
|
|
)
|