From ec516a762553376e7a4a0f8c7aee96e089141053 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 18 Oct 2021 02:34:52 -0700 Subject: [PATCH] Update `ssz_generic` test format README The existing README has a reference to an alias type `Bytes[N]` that has been removed from the repo so it is not clear what it exactly refers to. This PR updates the type to the equivalent `List[T, N]` using more recent SSZ typing syntax. --- tests/formats/ssz_generic/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/formats/ssz_generic/README.md b/tests/formats/ssz_generic/README.md index 85a507985..dacd72779 100644 --- a/tests/formats/ssz_generic/README.md +++ b/tests/formats/ssz_generic/README.md @@ -180,7 +180,7 @@ class ComplexTestStruct(Container): A: uint16 B: List[uint16, 128] C: uint8 - D: Bytes[256] + D: List[uint8, 256] E: VarTestStruct F: Vector[FixedTestStruct, 4] G: Vector[VarTestStruct, 2]