mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-15 06:28:20 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
23 lines
814 B
Python
23 lines
814 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",
|
|
"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/apimiddleware: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",
|
|
],
|
|
)
|