mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
044a4ad5a3
* ignore remote genesis url flag if present in db * ignore checkpoint sync flags if initialized * lint Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
19 lines
544 B
Python
19 lines
544 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"api.go",
|
|
"file.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/sync/genesis",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api/client/beacon:go_default_library",
|
|
"//beacon-chain/db:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|