mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
8310d22a05
* initial commit * fixing variable rename * fixing unit test * adding based on review comments * renaming cache * simplifying logic on signed validator registrationRequest * adding unit tests * fixing linting * using wrong dependency
20 lines
608 B
Python
20 lines
608 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/accounts/testing",
|
|
visibility = [
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//validator/accounts/iface:go_default_library",
|
|
"//validator/client/iface:go_default_library",
|
|
"//validator/keymanager:go_default_library",
|
|
],
|
|
)
|