mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
23ff14c34b
* move general/phase0/bls tests * phase0/operations tests * phase0/sanity/blocks * fix import * phase0/sanity/slots * phase0/sanity/slots minimal * phase0/epoch_processing tests * phase0/rewards tests * simplify * more simplification * phase0/shuffling tests * phase0/ssz_static tests * spectest/utils * fix build * readme * update test sizes * update readme
20 lines
749 B
Python
20 lines
749 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["rewards_penalties.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/spectest/shared/phase0/rewards",
|
|
visibility = ["//spectest:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/core/epoch/precompute:go_default_library",
|
|
"//beacon-chain/core/helpers:go_default_library",
|
|
"//beacon-chain/state/stateV0:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"//spectest/utils:go_default_library",
|
|
"@com_github_golang_snappy//:go_default_library",
|
|
],
|
|
)
|