mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
231208c977
* accounts list cleanup * go.sum * go mod tidy -compat=1.17 * add comment back Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
17 lines
470 B
Python
17 lines
470 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["wallet.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/accounts/iface",
|
|
visibility = [
|
|
"//cmd:__subpackages__",
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//validator/keymanager:go_default_library",
|
|
"//validator/keymanager/remote-web3signer:go_default_library",
|
|
],
|
|
)
|