From 98bed16a09e5627730d51cef116e029285437d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alonso=20Gonz=C3=A1lez?= Date: Mon, 27 Nov 2023 09:15:23 +0100 Subject: [PATCH] Update evm/spec/mpts.tex Co-authored-by: David --- evm/spec/mpts.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/spec/mpts.tex b/evm/spec/mpts.tex index 5ab3bc7d..9678d388 100644 --- a/evm/spec/mpts.tex +++ b/evm/spec/mpts.tex @@ -10,7 +10,7 @@ Insertion and deletion is performed in the same way as other MPT implementations \subsection{Internal memory format} -The tries are stored in the kernel memory, specifically in the {\tt Segment:TrieData} segment. Each node type is stored as +The tries are stored in kernel memory, specifically in the {\tt Segment:TrieData} segment. Each node type is stored as \begin{enumerate} \item An empty node is encoded as $(\texttt{MPT\_NODE\_EMPTY})$. \item A branch node is encoded as $(\texttt{MPT\_NODE\_BRANCH}, c_1, \dots, c_{16}, v)$, where each $c_i$ is a pointer to a child node, and $v$ is a pointer to a value. If a branch node has no associated value, then $v = 0$, i.e. the null pointer.