mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 07:58:22 -05:00
14 lines
455 B
Python
14 lines
455 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/OffchainLabs/prysm/v7/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",
|
|
],
|
|
)
|