mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
7fa3ebfaa8
* Add historical summaries to state and processing * Process historical roots test * Passing spec tests * Fix shas and tests * Fix mainnet spectest sha * Fix tests * Update beacon-chain/core/epoch/epoch_processing.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/core/epoch/epoch_processing_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/prysm/v1alpha1/beacon_state.proto Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/state/state-native/hasher.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Radek's feedback * Getters error * Dont return * Fix else * Fix tests * Fix test * Rm white space Co-authored-by: Radosław Kapka <rkapka@wp.pl>
40 lines
1.5 KiB
Python
40 lines
1.5 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",
|
|
"helpers.go",
|
|
"historical_summaries_update.go",
|
|
"inactivity_updates.go",
|
|
"justification_and_finalization.go",
|
|
"participation_flag_updates.go",
|
|
"randao_mixes_reset.go",
|
|
"registry_updates.go",
|
|
"rewards_and_penalties.go",
|
|
"slashings.go",
|
|
"slashings_reset.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/capella/epoch_processing",
|
|
visibility = ["//testing/spectest:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/core/altair:go_default_library",
|
|
"//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:go_default_library",
|
|
"//beacon-chain/state/state-native:go_default_library",
|
|
"//config/params:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"//testing/spectest/utils:go_default_library",
|
|
"//testing/util:go_default_library",
|
|
"@com_github_golang_snappy//:go_default_library",
|
|
"@in_gopkg_d4l3k_messagediff_v1//:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
],
|
|
)
|