mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 09:42:19 +00:00
c1f00923c1
* Initial implementation * fix withrawal unit tests * add custom hooks api middleware test * unit tests for endpoint * update screwed proto file * double import * Raul review Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
20 lines
580 B
Python
20 lines
580 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__",
|
|
"//beacon-chain/operations/blstoexec:__pkg__",
|
|
"//beacon-chain/rpc/eth/beacon:__subpackages__",
|
|
"//crypto/bls:__subpackages__",
|
|
"//testing:__subpackages__",
|
|
],
|
|
deps = ["//config/fieldparams:go_default_library"],
|
|
)
|