mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
737e0e0d3a
* blob retention period functional opts * missed unstaged change * missed other init after cleardb * fix ineffassign * fix dup import * config failsafe for tests --------- Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
22 lines
644 B
Python
22 lines
644 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/tools/blocktree",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//beacon-chain/db/filters:go_default_library",
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//consensus-types/primitives:go_default_library",
|
|
"@com_github_emicklei_dot//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "blocktree",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|