mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
eb192049b8
* create a testing db method that can be used with the new database interface * lint * lint * PR feedback * Update setup_db.go
15 lines
445 B
Python
15 lines
445 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["setup_db.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/db/testing",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/db:go_default_library",
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
],
|
|
)
|