mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57: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
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["service.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/simulator",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/params:go_default_library",
|
|
"//beacon-chain/types:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/p2p:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethdb:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_golang_protobuf//ptypes:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["service_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//beacon-chain/types:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/database:go_default_library",
|
|
"//shared/p2p:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
],
|
|
)
|