mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 20:50:05 +00:00
28 lines
819 B
Python
28 lines
819 B
Python
|
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"params.go",
|
||
|
"service.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/slasher",
|
||
|
visibility = ["//beacon-chain:__subpackages__"],
|
||
|
deps = [
|
||
|
"@com_github_ferranbt_fastssz//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
"@com_github_sirupsen_logrus//:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
srcs = ["params_test.go"],
|
||
|
embed = [":go_default_library"],
|
||
|
deps = [
|
||
|
"//shared/testutil/assert:go_default_library",
|
||
|
"@com_github_ferranbt_fastssz//:go_default_library",
|
||
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
||
|
],
|
||
|
)
|