mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
0d118df034
* recheck roughtime more frequently if we think our clock is far off * Merge refs/heads/master into faster-roughtime-corrections * gaz * Merge refs/heads/master into faster-roughtime-corrections * Merge refs/heads/master into faster-roughtime-corrections * Merge refs/heads/master into faster-roughtime-corrections
15 lines
546 B
Python
15 lines
546 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 = [
|
|
"@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",
|
|
],
|
|
)
|