mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
6738fa3493
* Revert "Optimize Migration for new Attester Protection DB (#8231)" This reverts commitc4ab67832f
. * Revert "Integrate New Slashing Protection DB Methods at Runtime (#8219)" This reverts commit3858068201
. * Revert "DB Migration for Optimal Local Slashing Protection (#8212)" This reverts commitdd3ac6c2ed
.
14 lines
455 B
Python
14 lines
455 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["interface.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/validator/db/iface",
|
|
# Other packages must use github.com/prysmaticlabs/prysm/validator/db.Database alias.
|
|
visibility = ["//validator/db:__subpackages__"],
|
|
deps = [
|
|
"//shared/backuputil:go_default_library",
|
|
"//validator/db/kv:go_default_library",
|
|
],
|
|
)
|