mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-01-13 12:14:19 +00:00
Update simple-serialize.md
This commit is contained in:
parent
25ef2553c7
commit
57971aacb4
@ -12,8 +12,7 @@ This is a **work in progress** describing typing, serialization and Merkleizatio
|
||||
- [Serialization](#serialization)
|
||||
- [`uintN`](#uintn)
|
||||
- [`bool`](#bool)
|
||||
- [Tuples](#lists)
|
||||
- [Containers, lists](#containers-lists)
|
||||
- [Tuples, containers, lists](#tuples-containers-lists)
|
||||
- [Deserialization](#deserialization)
|
||||
- [Merkleization](#merkleization)
|
||||
- [Self-signed containers](#self-signed-containers)
|
||||
@ -69,13 +68,15 @@ assert value in (True, False)
|
||||
return b'\x01' if value is True else b'\x00'
|
||||
```
|
||||
|
||||
### Tuples
|
||||
### Tuples, containers, lists
|
||||
|
||||
If `value` is fixed-length (i.e. does not embed a list):
|
||||
|
||||
```python
|
||||
return ''.join([serialize(element) for element in value])
|
||||
```
|
||||
|
||||
### Containers, lists
|
||||
If `value` is variable-length (i.e. embeds a list):
|
||||
|
||||
```python
|
||||
serialized_bytes = ''.join([serialize(element) for element in value])
|
||||
|
Loading…
x
Reference in New Issue
Block a user