mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 13:28:01 -05:00
* update diff * deps * add tests for `SaveLightClientUpdate` * cleanup imports * lint * changelog * fix incorrect arithmetic * check for lightclient feature flag * fix tests * fix `saveLightClientBootstrap` and `saveLightClientUpdate` * replace and with or * move feature check to `postBlockProcess` --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl>
25 lines
948 B
Python
25 lines
948 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"errors.go",
|
|
"interface.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v5/beacon-chain/db/iface",
|
|
# Other packages must use github.com/prysmaticlabs/prysm/beacon-chain/db.Database alias.
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//beacon-chain/db/filters:go_default_library",
|
|
"//beacon-chain/slasher/types:go_default_library",
|
|
"//beacon-chain/state:go_default_library",
|
|
"//consensus-types/blocks:go_default_library",
|
|
"//consensus-types/interfaces:go_default_library",
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//monitoring/backup:go_default_library",
|
|
"//proto/dbval:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
],
|
|
)
|