mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
0a5c65e29c
* Add GetAttestationData * Add tests * Add many more tests and refactor * Fix logic * Address PR comments * Address PR comments * Add jsonRestHandler and decouple http logic from rest of the code * Add buildURL tests * Remove handlers_test.go * Improve tests * Implement `ValidatorIndex` of `beaconApiValidatorClient` using Beacon API * Implement getStateValidators * `validatorIndex`: Use `getStateValidators` Co-authored-by: Patrice Vignola <vignola.patrice@gmail.com>
17 lines
511 B
Python
17 lines
511 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"genesis_mock.go",
|
|
"json_rest_handler_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v3/validator/client/beacon-api/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api/gateway/apimiddleware:go_default_library",
|
|
"//beacon-chain/rpc/apimiddleware:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
],
|
|
)
|