mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
a45b23f990
* fix for incorrect bitfield in large committee sizes * spacing * Update shared/bitutil/bit.go Co-Authored-By: rauljordan <raul@prysmaticlabs.com> * Update shared/bitutil/bit_test.go Co-Authored-By: rauljordan <raul@prysmaticlabs.com> * Update validator/client/validator_attest.go Co-Authored-By: rauljordan <raul@prysmaticlabs.com> * fix build * fix merge issues * fix test * fix test * gazelle * Update bit_test.go
20 lines
534 B
Python
20 lines
534 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["bit.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/bitutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/mathutil:go_default_library",
|
|
"@com_github_steakknife_hamming//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["bit_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//shared/mathutil:go_default_library"],
|
|
)
|