From a83a2f1bc7456c1db0ed3bce9fa84745405918cd Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Tue, 20 Apr 2021 20:18:00 +0800 Subject: [PATCH] Add note for ByteList and ByteVector --- ssz/simple-serialize.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssz/simple-serialize.md b/ssz/simple-serialize.md index d36e444ec..d97b8ea1c 100644 --- a/ssz/simple-serialize.md +++ b/ssz/simple-serialize.md @@ -75,7 +75,8 @@ For convenience we alias: * `bit` to `boolean` * `byte` to `uint8` (this is a basic type) -* `BytesN` to `Vector[byte, N]` (this is *not* a basic type) +* `BytesN` and `ByteVector[N]` to `Vector[byte, N]` (this is *not* a basic type) +* `ByteList[N]` to `List[byte, N]` * `null`: `{}` ### Default values