mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
f9d847991c
* Add RemoveOldestFromCache * Add log * comment * gaz * Merge branch 'master' into prune-spancache-historical * Merge refs/heads/master into prune-spancache-historical * Merge refs/heads/master into prune-spancache-historical * Fix span defer * Merge branch 'prune-spancache-historical' of github.com:prysmaticlabs/prysm into prune-spancache-historical * Merge refs/heads/master into prune-spancache-historical * Update slasher/db/kv/kv.go
19 lines
665 B
Python
19 lines
665 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"span_cache.go",
|
|
"validators_cache.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/slasher/cache",
|
|
visibility = ["//slasher:__subpackages__"],
|
|
deps = [
|
|
"//slasher/detection/attestations/types:go_default_library",
|
|
"@com_github_hashicorp_golang_lru//: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",
|
|
],
|
|
)
|