Zpad is already in #543

This commit is contained in:
vbuterin 2019-02-03 14:26:07 -06:00 committed by GitHub
parent acb432ef3a
commit 197fa18893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ Return the hash of the serialization of the value.
#### List/Vectors
First, we define some helpers and then the Merkle tree function. `def zpad(input: bytes, length: int) -> bytes: return input + b'\x00' * (length - len(input))` is a helper that extends the given `bytes` value to the desired `length` by adding zero bytes on the right.
First, we define the Merkle tree function.
```python
# Merkle tree hash of a list of homogenous, non-empty items