mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
6bf14dedcd
* WIP of aggregated signatures in DB * new lines at end * taking a nap on the plane now * fix tests * remove duplication of attestations. so much for that airplane nap lol * benchmark before flight lands * gaz * manual gaz * fully contained checks * quick improvement before landing * new bitlist with fixes * doesn't need real signatures * it works, mostly * print shard too * some refactoring * Revert "some refactoring" This reverts commit 377ce7fbfb02321c20522da2eb27208a20a67669. * Revert "Revert "some refactoring"" This reverts commit b46a458898acd214da44fc20dfae920d2725b6e8. These changes are ok, just need to update the expected values * fix tests * lint * lint * upstream changes * fix tests * what * resolve TODOs * gofmt * revert unrelated pb * remove debug statement
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
# gazelle:ignore
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
proto_library(
|
|
name = "db_proto",
|
|
srcs = ["attestation_container.proto"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/eth/v1alpha1:v1alpha1_proto",
|
|
"@gogo_special_proto//github.com/gogo/protobuf/gogoproto",
|
|
],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "db_go_proto",
|
|
compiler = "//:proto_compiler",
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/beacon/db",
|
|
proto = ":db_proto",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["attestation_container_helper.go"],
|
|
embed = [":db_go_proto"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/beacon/db",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["attestation_container_helper_test.go"],
|
|
deps = [
|
|
":go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/bls:go_default_library",
|
|
"@com_github_prysmaticlabs_go_bitfield//:go_default_library",
|
|
],
|
|
)
|