mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
9ab08e6998
* first version of the watchtower api * first version * delete watchtower * move to message loop * roughtime * one time * fix test * Fixed test * Fixed proposer server * Gaz * gaz * Stuck * Tests passing * Fixed all the tests
17 lines
605 B
Python
17 lines
605 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["validator_service_mock.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/rpc/testing",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//proto/beacon/rpc/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"@com_github_gogo_protobuf//types:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
"@org_golang_google_grpc//metadata:go_default_library",
|
|
],
|
|
)
|