mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
007c776d8a
* tool to query db by a key prefix * cleanup * lint and fmt * db/kv public visibility We've discussed before that Bazel visibility constraints don't accomplish much in go, so I'm phasing them out in places where they get in the way. * derp Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
22 lines
706 B
Python
22 lines
706 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"buckets.go",
|
|
"cmd.go",
|
|
"query.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/cmd/prysmctl/db",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//config/params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/hexutil:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
"@io_etcd_go_bbolt//:go_default_library",
|
|
],
|
|
)
|