SSZ: Remove note on efficiency

This commit is contained in:
Jannik Luhn 2019-01-22 17:16:37 +01:00
parent a5519a7d3b
commit f8670e8069
1 changed files with 0 additions and 2 deletions

View File

@ -147,8 +147,6 @@ Lists are a collection of elements of the same homogeneous type.
2. Prefix the concatenation with its length encoded as a `4-byte` **little-endian** unsigned integer.
* *Note on efficiency*: consider using a container that does not need to iterate over all elements to get its length. For example Python lists, C++ vectors or Rust Vec.
**Example in Python**
```python