mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
8c39c55f05
* Initial setup * Gaz * Remove original implementation * Fix protos * Cleanup + tests * Cleanup * Radek' review + fixes * Fix merge errors * Fix imports * Rename error handling * Fix broken e2e * Gaz * Update comment
24 lines
850 B
Python
24 lines
850 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"beacon_block_converter_mock.go",
|
|
"duties_mock.go",
|
|
"genesis_mock.go",
|
|
"json_rest_handler_mock.go",
|
|
"state_validators_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/validator/client/beacon-api/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api/gateway/apimiddleware:go_default_library",
|
|
"//beacon-chain/rpc/apimiddleware:go_default_library",
|
|
"//beacon-chain/rpc/eth/shared:go_default_library",
|
|
"//beacon-chain/rpc/eth/validator:go_default_library",
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
],
|
|
)
|