mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
753e285fb6
* removing all prysm remote signer code * fixing unit tests * resolving more build issues * resolving deepsource complaint * fixing lint * trying to fix bazel library * trying testonly true * removing assert and require from non test settings * fixing bazel and tests * removing more unused files related to remote signer * fixing linting * reverting some changes * reverting a change that broke some code * removing typo * fixing unit test * fixing mnemonic information
25 lines
790 B
Python
25 lines
790 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"log.go",
|
|
"prompt.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/validator/accounts/userprompt",
|
|
visibility = [
|
|
"//cmd:__subpackages__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//cmd/validator/flags:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//io/prompt:go_default_library",
|
|
"@com_github_logrusorgru_aurora//:go_default_library",
|
|
"@com_github_manifoldco_promptui//: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",
|
|
],
|
|
)
|