Fix typo with missing bracket (#379)

This commit is contained in:
Alex Stokes 2018-12-31 17:35:09 -06:00 committed by Justin
parent 8f29bcdf08
commit d49b6e5087
1 changed files with 1 additions and 1 deletions

View File

@ -449,7 +449,7 @@ Where the inner `hash_tree_root` is a recursive application of the tree-hashing
Recursively tree hash the values in the container in the same order as the fields, and return the hash of the concatenation of the results.
```python
return hash(b''.join([hash_tree_root(getattr(x, field)) for field in value.fields))
return hash(b''.join([hash_tree_root(getattr(x, field)) for field in value.fields]))
```