mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
19abe81472
* finish the BLS API wrapper * all tests passing * unexported comment * gofmt tests for bls * block processing test into own package to avoid cycle * randao tests pass * blocks test passing * use common deposit generator * helper * resolved import cycle * setup initial * builds * almost done with blockchain tests * fix blockchain tests * getting through with chaintests * revert client change * lint * sync master conflict gazelle * randao test fixes * randao proposer impl * tests pass
17 lines
478 B
Python
17 lines
478 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["signature.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/forkutils",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//proto/beacon/p2p/v1:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["signature_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//proto/beacon/p2p/v1:go_default_library"],
|
|
)
|