mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
71 lines
2.7 KiB
Python
71 lines
2.7 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = [
|
|
"beacon_node.go",
|
|
"boot_node.go",
|
|
"lighthouse_beacon.go",
|
|
"lighthouse_validator.go",
|
|
"log.go",
|
|
"tracing_sink.go",
|
|
"validator.go",
|
|
"web3remotesigner.go",
|
|
],
|
|
data = [
|
|
"//testing/endtoend/static-files/eth1:eth1data",
|
|
"@lighthouse//:lighthouse_bin",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/testing/endtoend/components",
|
|
visibility = ["//testing/endtoend:__subpackages__"],
|
|
deps = [
|
|
"//cmd:go_default_library",
|
|
"//cmd/beacon-chain/flags:go_default_library",
|
|
"//cmd/validator/flags:go_default_library",
|
|
"//config/features:go_default_library",
|
|
"//config/fieldparams:go_default_library",
|
|
"//config/params:go_default_library",
|
|
"//config/validator/service:go_default_library",
|
|
"//contracts/deposit:go_default_library",
|
|
"//crypto/bls:go_default_library",
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//runtime/interop:go_default_library",
|
|
"//testing/endtoend/components/eth1:go_default_library",
|
|
"//testing/endtoend/helpers:go_default_library",
|
|
"//testing/endtoend/params:go_default_library",
|
|
"//testing/endtoend/types:go_default_library",
|
|
"//testing/util:go_default_library",
|
|
"//validator/keymanager:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//accounts/keystore:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//rpc:go_default_library",
|
|
"@com_github_google_uuid//:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_wealdtech_go_eth2_wallet_encryptor_keystorev4//:go_default_library",
|
|
"@in_gopkg_yaml_v2//:go_default_library",
|
|
"@io_bazel_rules_go//go/tools/bazel:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["web3remotesigner_test.go"],
|
|
data = [
|
|
"//config/params:custom_configs",
|
|
"@web3signer",
|
|
],
|
|
deps = [
|
|
":go_default_library",
|
|
"//config/params:go_default_library",
|
|
"//testing/endtoend/params:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
],
|
|
)
|