mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
dbeb3ee886
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * Onboard validator's Beacon REST API usage to e2e tests * Remove unused variables * Remove use_beacon_api tags * Fix DeepSource errors * Revert unneeded changes * Revert evaluator changes * Revert import reordering * Address PR comments * Remove all REST API e2e tests except minimal one * Fix validator pointing to inexisting beacon node port Co-authored-by: Radosław Kapka <rkapka@wp.pl>
16 lines
568 B
Python
16 lines
568 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["validator_client_factory.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/validator/client/validator-client-factory",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//config/features:go_default_library",
|
|
"//validator/client/beacon-api:go_default_library",
|
|
"//validator/client/grpc-api:go_default_library",
|
|
"//validator/client/iface:go_default_library",
|
|
"//validator/helpers:go_default_library",
|
|
],
|
|
)
|