mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 23:08:45 +00:00
38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = ["validation.go"],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/exit",
|
||
|
visibility = [
|
||
|
"//beacon-chain:__subpackages__",
|
||
|
],
|
||
|
deps = [
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//proto/beacon/p2p/v1:go_default_library",
|
||
|
"//shared/bls:go_default_library",
|
||
|
"//shared/mathutil:go_default_library",
|
||
|
"//shared/params:go_default_library",
|
||
|
"//shared/roughtime:go_default_library",
|
||
|
"@com_github_pkg_errors//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
srcs = ["validation_test.go"],
|
||
|
embed = [":go_default_library"],
|
||
|
deps = [
|
||
|
"//beacon-chain/blockchain/testing:go_default_library",
|
||
|
"//beacon-chain/core/blocks:go_default_library",
|
||
|
"//beacon-chain/core/state:go_default_library",
|
||
|
"//beacon-chain/db/testing:go_default_library",
|
||
|
"//shared/params:go_default_library",
|
||
|
"//shared/testutil:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
||
|
],
|
||
|
)
|