prysm-pulse/proto/dbval/BUILD.bazel
kasey 1df173e701
Block backfilling (#12968)
* backfill service

* fix bug where origin state is never unlocked

* support mvslice states

* use renamed interface

* refactor db code to skip block cache for backfill

* lint

* add test for verifier.verify

* enable service in service init test

* cancellation cleanup

* adding nil checks to configset juggling

* assume blocks are available by default

As long as we're sure the AvailableBlocker is initialized correctly
during node startup, defaulting to assuming we aren't in a checkpoint
sync simplifies things greatly for tests.

* block saving path refactor and bugfix

* fix fillback test

* fix BackfillStatus init tests

---------

Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
2024-01-23 07:54:30 +00:00

24 lines
652 B
Python

load("@prysm//tools/go:def.bzl", "go_library")
load("@rules_proto//proto:defs.bzl", "proto_library")
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
proto_library(
name = "dbval_proto",
srcs = ["dbval.proto"],
visibility = ["//visibility:public"],
)
go_proto_library(
name = "dbval_go_proto",
importpath = "github.com/prysmaticlabs/prysm/v4/proto/dbval",
proto = ":dbval_proto",
visibility = ["//visibility:public"],
)
go_library(
name = "go_default_library",
embed = [":dbval_go_proto"],
importpath = "github.com/prysmaticlabs/prysm/v4/proto/dbval",
visibility = ["//visibility:public"],
)