prysm-pulse/testing/spectest/shared/deneb/merkle_proof/BUILD.bazel
Potuz daa6d2e741
Implement Merkle proof spectests (#13146)
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2023-11-02 23:08:16 +00:00

14 lines
456 B
Python

load("@prysm//tools/go:def.bzl", "go_library")
go_library(
name = "go_default_library",
testonly = True,
srcs = ["merkle_proof.go"],
importpath = "github.com/prysmaticlabs/prysm/v4/testing/spectest/shared/deneb/merkle_proof",
visibility = ["//visibility:public"],
deps = [
"//testing/spectest/shared/common/merkle_proof:go_default_library",
"//testing/spectest/shared/deneb/ssz_static:go_default_library",
],
)