mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
d447bb6458
* implement keymanager proto * utilize proto message and properly comment * add in godoc * doc * add in doc * sign implementation done * add documentation for direct keymanager and add lock to signing * sign method tests * update godoc * concrete sign * fix build * proper iface
24 lines
641 B
Python
24 lines
641 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["types.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/keymanager/v2",
|
|
visibility = [
|
|
"//validator:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//proto/validator/accounts/v2:go_default_library",
|
|
"//shared/bls:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["types_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//validator/keymanager/v2/direct:go_default_library"],
|
|
)
|