mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
f28b47bd87
* add changes * comment * kasey's review Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
23 lines
655 B
Python
23 lines
655 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["fdlimits.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/runtime/fdlimits",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//common/fdlimit:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["fdlimits_test.go"],
|
|
deps = [
|
|
":go_default_library",
|
|
"//testing/assert:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common/fdlimit:go_default_library",
|
|
],
|
|
)
|