mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
cf0bd633f0
* fork/version detection and unmarshaling support * Update config/params/config.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/detect/configfork.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * PR feedback * move ssz initialization into the detect package * clarify comment * VersionForEpoch is much simpler/clearer in reverse * simpler VersionForEpoch; build AllConfigs in init * use fieldparams for Version * Update proto/detect/configfork_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * remove custom ForkName type, use runtime/version * pr cleanup * random fix from bad gh ui suggestion; privatize * privatize fieldSpec methods; + unit tests * Update proto/detect/configfork.go Co-authored-by: Potuz <potuz@prysmaticlabs.com> * fix bad github ui suggestion * ensure unique versions for simpler config match * fmt & adding unit test for ByState() * table-driven unit test for ByState * TestUnmarshalState * OrderedSchedule -> network/forks per PR feedback * goimports * lint fixes * move proto/detect -> ssz/encoding/detect * use typeUndefined in String * backport config tests from e2e PR * fix config parity test; make debugging it easier * lint * fix fork schedule initialization * cleanup * fix build * fix big ole derp * anything for you, deep source * goimportsss * InitializeForkSchedule in LoadChainConfigFile * PR feedback Co-authored-by: kasey <kasey@users.noreply.github.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
64 lines
2.0 KiB
Python
64 lines
2.0 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"config.go",
|
|
"config_utils_develop.go", # keep
|
|
"config_utils_prod.go",
|
|
"io_config.go",
|
|
"loader.go",
|
|
"mainnet_config.go",
|
|
"minimal_config.go",
|
|
"network_config.go",
|
|
"testnet_e2e_config.go",
|
|
"testnet_prater_config.go",
|
|
"testnet_pyrmont_config.go",
|
|
"testutils.go",
|
|
"values.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/config/params",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//config/fieldparams:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//math:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//params:go_default_library",
|
|
"@com_github_mohae_deepcopy//:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@in_gopkg_yaml_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"checktags_test.go",
|
|
"config_test.go",
|
|
"loader_test.go",
|
|
"testnet_config_test.go",
|
|
"testnet_prater_config_test.go",
|
|
],
|
|
data = glob(["*.yaml"]) + [
|
|
"@consensus_spec//:spec_data",
|
|
"@consensus_spec_tests_mainnet//:test_data",
|
|
"@consensus_spec_tests_minimal//:test_data",
|
|
"@eth2_networks//:configs",
|
|
],
|
|
gotags = ["develop"],
|
|
race = "on",
|
|
deps = [
|
|
":go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@in_gopkg_yaml_v2//:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|