From 12d9ac6a68a51bd1908f9b29db7b189bb31fe77c Mon Sep 17 00:00:00 2001 From: harry <53987565+h5law@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:10:43 +0000 Subject: [PATCH] chore: change doc file name to use trie --- docs/{MerkleSumTree.md => MerkleSumTrie.md} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename docs/{MerkleSumTree.md => MerkleSumTrie.md} (99%) diff --git a/docs/MerkleSumTree.md b/docs/MerkleSumTrie.md similarity index 99% rename from docs/MerkleSumTree.md rename to docs/MerkleSumTrie.md index d323b0a..a72017c 100644 --- a/docs/MerkleSumTree.md +++ b/docs/MerkleSumTrie.md @@ -34,7 +34,7 @@ verifiable total sum of all elements. ## Implementation The implementation of the Sparse Merkle Sum Trie (SMST) follows, in principle, -the same implementation as the [Plasma Core Merkle Sum trie][plasma core docs]. +the same implementation as the [Plasma Core Merkle Sum Tree][plasma core docs]. The main differences with the current SMT implementation are outlined below. The primary difference lies in the encoding of node data within the trie to accommodate for the sum. @@ -317,4 +317,4 @@ func main() { } ``` -[plasma core docs]: https://plasma-core.readthedocs.io/en/latest/specs/sum-trie.html +[plasma core docs]: https://plasma-core.readthedocs.io/en/latest/specs/sum-tree.html