mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
d1dd8471a3
* Debug HTTP endpoints * register endpoints * tests * small fixes * config test fix
25 lines
760 B
Python
25 lines
760 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"doc.go",
|
|
"error.go",
|
|
"interfaces.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/beacon-chain/forkchoice",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//cmd:__subpackages__",
|
|
"//testing/spectest:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//beacon-chain/forkchoice/types:go_default_library",
|
|
"//beacon-chain/state:go_default_library",
|
|
"//config/fieldparams:go_default_library",
|
|
"//consensus-types/forkchoice:go_default_library",
|
|
"//consensus-types/primitives:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|