mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 20:50:05 +00:00
720c80d8ee
* able to bazel build beacon chain.. yay * fixed package validator tests * fixed a few more package tests (epoch, blockops, forkchoice) * fixed all the tests! and lint. Woohoo * moving committee helpers to own package * more fixes at epoch processing * fixed rewards and penalties tests * fixed rest of the tests. yay
31 lines
794 B
Python
31 lines
794 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"committee.go",
|
|
"randao.go",
|
|
"slot_epoch.go",
|
|
"validators.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/helpers",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/hashutil:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"committee_test.go",
|
|
"randao_test.go",
|
|
"slot_epoch_test.go",
|
|
"validators_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = ["//proto/beacon/p2p/v1:go_default_library"],
|
|
)
|