Update specs/light_client/merkle_proofs.md

This commit is contained in:
vbuterin 2019-08-01 18:12:35 -04:00 committed by GitHub
parent e93e7a3f1a
commit 2e7c8fa529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ def get_elem_type(typ: ComplexType, index: Union[int, str]) -> Type:
Returns the type of the element of an object of the given type with the given index Returns the type of the element of an object of the given type with the given index
or member variable name (eg. `7` for `x[7]`, `"foo"` for `x.foo`) or member variable name (eg. `7` for `x[7]`, `"foo"` for `x.foo`)
""" """
return typ.get_fields()[key] if issubclass(typ, Container) else typ.elem_type return typ.get_fields()[index] if issubclass(typ, Container) else typ.elem_type
def chunk_count(typ: SSZType) -> int: def chunk_count(typ: SSZType) -> int: