mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 10:12:19 +00:00
12524ae8dd
* fix bug in eth1 data vote count increases * updating attester slashings * is double vote and attester pseudocode * attester slashing revamp complete * exits processing complete * all block operations aligned to spec * completed test revamp * builds properly * all done FINALLY * deprecate all instances of old randao logic * fix all broken tests and cleanup randao references across repo * builds but tests failing * fixing broken chaintests * only chaintests fail now * randao fully updated * add bls todo * lint * travis * fix unresolved property in struct * remove used randao var
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"fork_choice_test_format.go",
|
|
"helpers.go",
|
|
"setup_db.go",
|
|
"shuffle_test_format.go",
|
|
"simulated_backend.go",
|
|
"state_test_format.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/chaintest/backend",
|
|
visibility = ["//beacon-chain/chaintest:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/blockchain:go_default_library",
|
|
"//beacon-chain/core/blocks:go_default_library",
|
|
"//beacon-chain/core/state:go_default_library",
|
|
"//beacon-chain/db:go_default_library",
|
|
"//beacon-chain/utils:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/hashutil:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"//shared/sliceutil:go_default_library",
|
|
"//shared/trieutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["simulated_backend_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//shared/trieutil:go_default_library"],
|
|
)
|