mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
1f550a0da9
* Handle hash nil pointers * handle in hash beacon block * add recovery when broadcasting p2p messages * cmt * gazelle
35 lines
977 B
Python
35 lines
977 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"beacon_block.go",
|
|
"hash.go",
|
|
"merkleRoot.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/hashutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@org_golang_x_crypto//sha3:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"beacon_block_test.go",
|
|
"hash_test.go",
|
|
"merkleRoot_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//proto/testing:go_default_library",
|
|
"//shared/bytesutil:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_google_gofuzz//:go_default_library",
|
|
],
|
|
)
|