mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-04-19 03:01:06 -04:00
This PR implements [process_payload_attestation](https://github.com/ethereum/consensus-specs/blob/master/specs/gloas/beacon-chain.md#new-process_payload_attestation) and spec tests
18 lines
523 B
Python
18 lines
523 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"indexed_payload_attestation.go",
|
|
"types.go",
|
|
],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/consensus-types",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//consensus-types/primitives:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//runtime/version:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
],
|
|
)
|