You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and Simple Serialize (SSZ) ([https://github.com/ethereum/consensus-specs/blob/dev/ssz/simple-serialize.md](https://github.com/ethereum/consensus-specs/blob/dev/ssz/simple-serialize.md))
Merkle Patricia Trie (MPT) proofs consist of a list of witness nodes that correspond to each trie node that consists of various data elements depending on the type of node (e.g. blank, branch, extension, leaf). When serialized, each witness node is represented as an RLP serialized list of the component elements.
193
+
Merkle Patricia Trie proofs consist of a list of witness nodes that correspond to each trie node that consists of various data elements depending on the type of node (e.g. blank, branch, extension, leaf). When serialized, each witness node is represented as an RLP serialized list of the component elements.
194
194
195
195
```python
196
196
TrieNode = List[uint8, MAX_BYTES_PER_NODE]
@@ -293,7 +293,7 @@ of stack in the subsequent step).
293
293
### `verify_required_block_state`
294
294
295
295
Check block hashes are canonical such as a node or against an accumulator of canonical
296
-
block hashes. Check merkle proofs in the requied block state.
296
+
block hashes. Check merkle proofs in the required block state.
0 commit comments