mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
14c59b2ff9
* Save new validators in DB * Use info * Add total validator count * Fixed tests * Add new test * Revert light client config * Add state metrics back * Gaz * Mark old ones as deprecated * Deprecate not --next services * Fixed all operation tests * Fixed node test * All tests passing locally * Add deprecated-p2p back, blocked by boostrap-query * Revert message proto * delete deprecated DB items * delete all other instances of old db * gaz * cycle rem * clear db
19 lines
505 B
Python
19 lines
505 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
package(default_testonly = True)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"broadcaster_mock.go",
|
|
"feed_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/event:go_default_library",
|
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
],
|
|
)
|