mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
e1408deb40
* Add REST implementation for `MultipleValidatorStatus` * Fix PR comments * Address PR comments Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
18 lines
547 B
Python
18 lines
547 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"genesis_mock.go",
|
|
"json_rest_handler_mock.go",
|
|
"state_validators_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/validator/client/beacon-api/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api/gateway/apimiddleware:go_default_library",
|
|
"//beacon-chain/rpc/apimiddleware:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
],
|
|
)
|