mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-11 04:00:05 +00:00
02966e64d8
* Add Wrapper to LRU Cache to handle Invalid Parameters #9461 * Regenerate BUILD.bazel and simplify tests using lru.Cache * Fix: fuzz_exports.go build error * Fix: block_fuzz.go * Revert lru.Cache interface * Remove redundant err check in pending_attestations_queue_test.go * Add tests for lru wrapper * Use lru package in prysm/shared instead of lruwrpr * Fix: goimports * Fix: BUILD.bazel Co-authored-by: Nishant Das <nishdas93@gmail.com>
17 lines
492 B
Python
17 lines
492 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["lru_wrpr.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/lru",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_hashicorp_golang_lru//:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["lru_wrpr_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["@com_github_stretchr_testify//assert:go_default_library"],
|
|
)
|