mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
a840fa563d
* remove accounts-v1 * get all tests to not panic * all client tests passing * fix node test * eliminate old flags * tidy up
16 lines
400 B
Python
16 lines
400 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"flags.go",
|
|
"interop.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/flags",
|
|
visibility = ["//validator:__subpackages__"],
|
|
deps = [
|
|
"//shared/fileutil:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|