mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
This pr implements the Gloas builder registry and related beacon state fields per the spec, including proto/SSZ updates and state-native wiring for builders, payload availability, pending payments/withdrawals, and expected withdrawals. This aligns BeaconState with the Gloas container changes and adds supporting hashing/copy helpers. Spec ref: https://github.com/ethereum/consensus-specs/blob/master/specs/gloas/beacon-chain.md
12 lines
213 B
Go
12 lines
213 B
Go
package minimal
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/testing/spectest/shared/gloas/ssz_static"
|
|
)
|
|
|
|
func TestMinimal_Gloas_SSZStatic(t *testing.T) {
|
|
ssz_static.RunSSZStaticTests(t, "minimal")
|
|
}
|