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.
This commit is contained in:
Alex Stokes 2021-10-18 02:34:52 -07:00 committed by GitHub
parent 6852c5a1d0
commit ec516a7625
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,7 +180,7 @@ class ComplexTestStruct(Container):
A: uint16 A: uint16
B: List[uint16, 128] B: List[uint16, 128]
C: uint8 C: uint8
D: Bytes[256] D: List[uint8, 256]
E: VarTestStruct E: VarTestStruct
F: Vector[FixedTestStruct, 4] F: Vector[FixedTestStruct, 4]
G: Vector[VarTestStruct, 2] G: Vector[VarTestStruct, 2]