prysm-pulse/shared/hashutil/BUILD.bazel
Preston Van Loon 592c5c3d92 Refactor hashing of beaconblock to shared (#1315)
* Add beacon block hash function

* Refactor/remove old hash method

* gazelle
2019-01-15 00:41:20 +08:00

33 lines
869 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",
"//shared/bytes:go_default_library",
"@com_github_gogo_protobuf//proto:go_default_library",
],
)