prysm-pulse/crypto/bls/common/mock/BUILD.bazel
Manu NALEPA 93298dfc56
Fix #11948 and reduces call to GetFeeRecipientByPubKey only in ListFeeRecipientByPubkey in nothing is defined in VC (#11970)
* Fix #11948 and reduces call to `GetFeeRecipientByPubKey` only in `ListFeeRecipientByPubkey` in nothing is defined in VC

* Fix typo
2023-02-14 04:53:54 +00:00

13 lines
380 B
Python

load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["interface_mock.go"],
importpath = "github.com/prysmaticlabs/prysm/v3/crypto/bls/common/mock",
visibility = ["//visibility:public"],
deps = [
"//crypto/bls/common:go_default_library",
"@com_github_golang_mock//gomock:go_default_library",
],
)