mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
2ecb905ae5
* add all changes in * fix issues * fix build * remove curve check * fix tool * add test * add tidy * fmt Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
28 lines
956 B
Python
28 lines
956 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["utils.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/crypto/ecdsa",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_btcsuite_btcd_btcec_v2//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_libp2p_go_libp2p_core//crypto:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["utils_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//testing/assert:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"@com_github_btcsuite_btcd_btcec_v2//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_libp2p_go_libp2p_core//crypto:go_default_library",
|
|
],
|
|
)
|