mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
15bfcf8ff6
* start tests for wrapped methods * Add a few tests and skeletons for interface impl methods * Add latest interfaces update from hf1 and stub the appropriate tests * Add a few more tests * More progress * Migitate nil pointer issues in construct. Complete tests * Copy changes from hf1 to v1alpha1 wrapper * Use testutils from #9201 Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
19 lines
698 B
Python
19 lines
698 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["beacon_block.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1/wrapper",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//proto/interfaces:go_default_library",
|
|
"//proto/prysm/v2:go_default_library",
|
|
"//shared/copyutil:go_default_library",
|
|
"//shared/version:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
],
|
|
)
|