mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
9166f40a04
* Adding Eth1 connections data message to service definition * PoC implementation for ETH1 connections RPC * naming revisions * cleanup * register powchain info fetcher * regenerate protos * gazelle Bazel * fixing comments Co-authored-by: Michael Neuder <michaelneuder@Michaels-MacBook-Pro.local> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
19 lines
565 B
Python
19 lines
565 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = [
|
|
"mock_genesis_timefetcher.go",
|
|
"mock_powchain_info_fetcher.go",
|
|
"mock_state_fetcher.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/rpc/testutil",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/state:go_default_library",
|
|
"//config/params:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
],
|
|
)
|