mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
132ad5beb8
* begin list accounts impl * colorize * show deposit data * separate responsibility * comprehensive test for list complete * gaz viz * print account creation timestamp * handle errs * ask for wallet and pass dir * Merge refs/heads/master into implement-v2-list
18 lines
488 B
Python
18 lines
488 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = 1,
|
|
srcs = ["mock.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/keymanager/v2/testing",
|
|
visibility = [
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//proto/validator/accounts/v2:go_default_library",
|
|
"//shared/bls:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
],
|
|
)
|