mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* block protos * proto and ssz * stubs * Enable Electra spec test * Pull in EIP-7251 protobuf changes From: https://github.com/prysmaticlabs/prysm/pull/13903 * All EIP7549 containers are passing * All EIP7251 containers passing * including changes from eip7002 * Everything passing except for beacon state hash tree root * fixing eletra state to use electra payload * Fix minimal test. Skip beacon state test * Perston's feedback --------- Co-authored-by: rkapka <radoslaw.kapka@gmail.com> Co-authored-by: james-prysm <james@prysmaticlabs.com>
13 lines
338 B
Python
13 lines
338 B
Python
load("@prysm//tools/go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["ssz_static_test.go"],
|
|
data = glob(["*.yaml"]) + [
|
|
"@consensus_spec_tests_mainnet//:test_data",
|
|
],
|
|
tags = ["spectest"],
|
|
deps = ["//testing/spectest/shared/electra/ssz_static:go_default_library"],
|
|
)
|