prysm-pulse/validator/accounts/testing/BUILD.bazel
Radosław Kapka 4d28d5e4d2
Listen for account changes only when required (#8503)
* initial implementation

* remove listening for changes from wallet creation

* goimports

* test fix

* more goimports

* listen for changes when initializing wallet through gRPC

Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-02-24 18:05:46 +00:00

17 lines
441 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 = [
"//validator/accounts/iface:go_default_library",
"//validator/keymanager:go_default_library",
],
)