mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 20:13:59 -05:00
* Add Gloas protobuf definitions with spec tests Add Gloas state fields to beacon state implementation * Remove shared field for pending payment * Radek's feedback * Potuz feedback * use slice concat * Fix comment * Fix concat * Fix comment * Fix correct index
18 lines
670 B
Python
18 lines
670 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["ssz_static.go"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/testing/spectest/shared/gloas/ssz_static",
|
|
visibility = ["//testing/spectest:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/state/state-native:go_default_library",
|
|
"//proto/engine/v1:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/require:go_default_library",
|
|
"//testing/spectest/shared/common/ssz_static:go_default_library",
|
|
"@com_github_prysmaticlabs_fastssz//:go_default_library",
|
|
],
|
|
)
|