mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
4e22f52ab3
* hotfix for round robin, hotfix for grpc recovery * gofmt * break * wrong subtraction * lint * testnet fork version update * ignore relay / DHT protocol not supported error
16 lines
429 B
Python
16 lines
429 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"errors.go",
|
|
"recovery_interceptor_option.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/traceutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@io_opencensus_go//trace:go_default_library",
|
|
],
|
|
)
|