mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
739f34f26c
Former-commit-id: 2fe6fdb393917f90c9a8a0c6dfb866738736803e [formerly 03d3519c59eb7f78e20ff08c081031d9b1f673bc] Former-commit-id: a1cba8b7ec0517748d5df0bab458b2466f7b6329
21 lines
621 B
Python
21 lines
621 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["service.go"],
|
|
importpath = "github.com/prysmaticlabs/geth-sharding/sharding/txpool",
|
|
visibility = ["//sharding:__subpackages__"],
|
|
deps = [
|
|
"//sharding/p2p:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//event:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["service_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//sharding/types:go_default_library"],
|
|
)
|