mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 01:04:29 +00:00
f37301c0c0
* Remove remote slashing protection feature * test fix * remove mock from tests --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
21 lines
647 B
Python
21 lines
647 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
package(default_testonly = True)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"beacon_chain_client_mock.go",
|
|
"node_client_mock.go",
|
|
"validator_client_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/testing/validator-mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
"@org_golang_google_protobuf//types/known/emptypb:go_default_library",
|
|
],
|
|
)
|