mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
* WIP
* WIP
* Remove duplicate mock
* WIP
* Revert "WIP"
This reverts commit a8010057fe.
* Fix build break
* Remove unused variable
* Fix build break
* Rename validator_mock to validatormock
* Fix failing test
---------
Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
Co-authored-by: Radosław Kapka <rkapka@wp.pl>
22 lines
681 B
Python
22 lines
681 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",
|
|
"slasher_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",
|
|
],
|
|
)
|