mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
2ef0b3526d
* Fix block proposals in the REST validator client * fix graffiti test * return empty graffiti * fallback to old endpoints * logs * handle 404 * everything passes * review from James * log undecoded value * test fixes and additions --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
25 lines
920 B
Python
25 lines
920 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/apimiddleware:go_default_library",
|
|
"//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",
|
|
],
|
|
)
|