mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
b87d0abc6c
* progress on fixing #3947 * upsert after, but only if not already exists * return an error in some case * format * handle case where there has not been any finality yet * it works * remove todo * use variable with comments * regression test * revert off by one issue, fix tests * rename receiver * @nisdas pr feedback
75 lines
2.6 KiB
Python
75 lines
2.6 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"archive.go",
|
|
"attestations.go",
|
|
"backup.go",
|
|
"blocks.go",
|
|
"checkpoint.go",
|
|
"deposit_contract.go",
|
|
"finalized_block_roots.go",
|
|
"kv.go",
|
|
"operations.go",
|
|
"schema.go",
|
|
"slashings.go",
|
|
"state.go",
|
|
"utils.go",
|
|
"validators.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/db/kv",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/core/helpers:go_default_library",
|
|
"//beacon-chain/db/filters:go_default_library",
|
|
"//proto/beacon/db:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"//shared/sliceutil:go_default_library",
|
|
"//shared/traceutil:go_default_library",
|
|
"@com_github_boltdb_bolt//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_karlseguin_ccache//:go_default_library",
|
|
"@com_github_mdlayher_prombolt//:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@io_opencensus_go//trace:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"archive_test.go",
|
|
"attestations_test.go",
|
|
"backup_test.go",
|
|
"blocks_test.go",
|
|
"checkpoint_test.go",
|
|
"deposit_contract_test.go",
|
|
"finalized_block_roots_test.go",
|
|
"kv_test.go",
|
|
"operations_test.go",
|
|
"slashings_test.go",
|
|
"state_test.go",
|
|
"validators_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//beacon-chain/db/filters:go_default_library",
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
],
|
|
)
|