mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
44611e0fb2
* Add a tool to update genesis time * Minor touchups * Merge branch 'master' into update-genesis-time * Added a readme * Merge refs/heads/master into update-genesis-time * Merge branch 'update-genesis-time' of github.com:prysmaticlabs/prysm into update-genesis-time * Merge refs/heads/master into update-genesis-time * Merge refs/heads/master into update-genesis-time
20 lines
570 B
Python
20 lines
570 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/update-genesis-time",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/roughtime:go_default_library",
|
|
"@com_github_prysmaticlabs_go_ssz//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "update-genesis-time",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|