mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +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>
16 lines
553 B
Python
16 lines
553 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["block_interface.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/proto/interfaces",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//proto/prysm/v2:go_default_library",
|
|
"@com_github_ferranbt_fastssz//:go_default_library",
|
|
"@com_github_prysmaticlabs_eth2_types//:go_default_library",
|
|
"@org_golang_google_protobuf//proto:go_default_library",
|
|
],
|
|
)
|