mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
14f77449ce
* next compatible, tests pass * terence feedback * skip comment * fixes * misc fix * on block * parse from unencrypted keys json * mod val client * launching unencrypted workssss * fix broken build * fix up build * rem prints * unencrypted keys file generator * generate json * unencrypted keys gen files * tool done * function abstractions * removed docker img stuff * lint
24 lines
569 B
Python
24 lines
569 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/unencrypted-keys-gen",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//shared/bls:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "unencrypted-keys-gen",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["main_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|