From 59307d1380de871ac1d031c48c781aae0c0c60b1 Mon Sep 17 00:00:00 2001 From: vbuterin Date: Fri, 2 Aug 2019 09:43:42 -0400 Subject: [PATCH] Update specs/light_client/merkle_proofs.md Co-Authored-By: Diederik Loerakker --- specs/light_client/merkle_proofs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/specs/light_client/merkle_proofs.md b/specs/light_client/merkle_proofs.md index 2a1103ca2..bf6cd7a61 100644 --- a/specs/light_client/merkle_proofs.md +++ b/specs/light_client/merkle_proofs.md @@ -85,6 +85,7 @@ def chunk_count(typ: SSZType) -> int: hash. For lists/vectors of basic types, it is often fewer because multiple basic elements can be packed into one 32-byte chunk. """ + # typ.length describes the limit for list types, or the length for vector types. if issubclass(typ, BasicValue): return 1 elif issubclass(typ, Bits):