mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
ad01bfbcde
* Complete evaluator for chain consensus * Add sync e2e test * Cleanup * Rename * Add tad more offset for correct head * Change offset to middle of slot * Change head block root to head epoch * comment * Fix eth1 * Address comments * Gazelle * Change to use file * Change to use reader * Use fil
22 lines
671 B
Python
22 lines
671 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = [
|
|
"finality.go",
|
|
"node.go",
|
|
"types.go",
|
|
"validator.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/endtoend/evaluators",
|
|
visibility = ["//endtoend:__subpackages__"],
|
|
deps = [
|
|
"//shared/params:go_default_library",
|
|
"@com_github_gogo_protobuf//types:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
],
|
|
)
|