mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
0aaee51973
* Implement ProcessBLSToExecutionChanges * Batch process signatures * gaz * Change runtime behavior * Terence's review
18 lines
468 B
Python
18 lines
468 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"constants.go",
|
|
"error.go",
|
|
"interface.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/crypto/bls/common",
|
|
visibility = [
|
|
"//beacon-chain/core/blocks:__subpackages__",
|
|
"//crypto/bls:__subpackages__",
|
|
"//testing:__subpackages__",
|
|
],
|
|
deps = ["//config/fieldparams:go_default_library"],
|
|
)
|