mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 16:54:28 +00:00
1f550a0da9
* Handle hash nil pointers * handle in hash beacon block * add recovery when broadcasting p2p messages * cmt * gazelle
27 lines
770 B
Python
27 lines
770 B
Python
package(default_testonly = True)
|
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
proto_library(
|
|
name = "ethereum_testing_proto",
|
|
srcs = ["test.proto"],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_google_protobuf//:timestamp_proto"],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "ethereum_testing_go_proto",
|
|
compiler = "//:proto_compiler",
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
|
|
proto = ":ethereum_testing_proto",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":ethereum_testing_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/testing",
|
|
visibility = ["//visibility:public"],
|
|
)
|