mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-02 16:27:37 +00:00
30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
|
load("@prysm//tools/go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
testonly = True,
|
||
|
srcs = [
|
||
|
"effective_balance_updates.go",
|
||
|
"eth1_data_reset.go",
|
||
|
"historical_roots_update.go",
|
||
|
"justification_and_finalization.go",
|
||
|
"participation_record_updates.go",
|
||
|
"randao_mixes_reset.go",
|
||
|
"registry.go",
|
||
|
"rewards_and_penalties.go",
|
||
|
"slashings.go",
|
||
|
"slashings_reset.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/spectest/shared/phase0/epoch_processing",
|
||
|
visibility = ["//spectest:__subpackages__"],
|
||
|
deps = [
|
||
|
"//beacon-chain/core/epoch:go_default_library",
|
||
|
"//beacon-chain/core/epoch/precompute:go_default_library",
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//beacon-chain/state/interface:go_default_library",
|
||
|
"//shared/testutil:go_default_library",
|
||
|
"//shared/testutil/require:go_default_library",
|
||
|
"//spectest/utils:go_default_library",
|
||
|
],
|
||
|
)
|