mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 06:58:20 +00:00
52a987ee44
* switched from blake2b to sha3 * fixed test * use sha3 from eth1.0
16 lines
434 B
Python
16 lines
434 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["hash.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/hashutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_ethereum_go_ethereum//crypto/sha3:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["hash_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|