mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
d24f99d66d
* added flag to enable roughtime syncing, with it disabled by defaults * gofmt * switched to feature flag * enable-roughtime works correctly * enable-roughtime works correctly * Gaz * Remove conflict * fix roughtime enable Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> Co-authored-by: rauljordan <raul@prysmaticlabs.com>
16 lines
599 B
Python
16 lines
599 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["roughtime.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/roughtime",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/featureconfig:go_default_library",
|
|
"@com_github_cloudflare_roughtime//:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus:go_default_library",
|
|
"@com_github_prometheus_client_golang//prometheus/promauto:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|