mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
002253bba3
* Migrating Keymanager account list functionality into each keymanager type * Addressing review comments * Adding newline at end of BUILD.bazel * bazel run //:gazelle -- fix Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
16 lines
445 B
Python
16 lines
445 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["format.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/keymanager/remote-utils",
|
|
visibility = [
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//validator/accounts/petnames:go_default_library",
|
|
"@com_github_logrusorgru_aurora//:go_default_library",
|
|
],
|
|
)
|