mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
d3b5a7c67b
* remove client helper in internal * tidying up the sharding client project * update all docs * implementing beacon rpc server methods * address prs * begin coverage * regen proto * include announcement chans * tests pass, announcing as canonical only after block has passed all processing * system functioning yay * tests pass * bootstrap validators * default balance params * fix lint * fix all tests * increasing cov * 100% test cov rpc * build file for internal * typo * graceful stop * merge with Terence's PR * address review comments * fixed blockchain tests and lint * added ethdb * persists last simulated session * cov * ready * fix lint * fix cov tests * fix lint * config options for args * fix lint * lint fix
16 lines
572 B
Python
16 lines
572 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["beacon_service_mock.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/internal",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/beacon/rpc/v1:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
"@io_bazel_rules_go//proto/wkt:empty_go_proto",
|
|
"@org_golang_google_grpc//metadata:go_default_library",
|
|
],
|
|
)
|