mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
26 lines
664 B
Python
26 lines
664 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"double_votes.go",
|
|
"surround_votes.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1/slashings",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//proto/prysm/v1alpha1:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"double_votes_test.go",
|
|
"surround_votes_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
],
|
|
)
|