mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
9edba29f64
* slashing simulator * add in necessary items for slasher sim * sim item * fix up * fixed build * rev * slasher sim in testing * testonly * gaz * gaz * fix viz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: prestonvanloon <preston@prysmaticlabs.com>
19 lines
555 B
Python
19 lines
555 B
Python
load("@prysm//tools/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__",
|
|
"//testing:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//beacon-chain/db:go_default_library",
|
|
"//beacon-chain/db/iface:go_default_library",
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"//beacon-chain/db/slasherkv:go_default_library",
|
|
],
|
|
)
|