mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
3c264be1c1
* Remove error checking for type assertions on p2p messages. The code should fail earlier in the p2p layer. Also fixed format on some TODOs * format TODO again * Add a bit more tests for p2p stuff * goimports on feed_mock * remove unused import
15 lines
425 B
Python
15 lines
425 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
package(default_testonly = True)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["feed_mock.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/p2p/mock",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
],
|
|
)
|