mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 21:08:10 -05:00
* refactor BLS to expose an interface rather than a single implementation * Split up tests, gofmt, goimports, docs * godoc for signature.Copy() * more godocs * revert gomod / deps changes * rm newline * revert proto changes * rename bls12 to herumi for clarity
17 lines
404 B
Python
17 lines
404 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"bls.go",
|
|
"constants.go",
|
|
"interface.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/bls",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/bls/herumi:go_default_library",
|
|
"//shared/bls/iface:go_default_library",
|
|
],
|
|
)
|