Skip to content

Commit

Permalink
Merge pull request Anastasia-Labs#30 from hadelive/update-mt
Browse files Browse the repository at this point in the history
docs: update merkle tree docs
  • Loading branch information
hadelive authored Feb 21, 2024
2 parents b52c199 + b322827 commit 3314062
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pages/plutarch_merkle_tree.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Consider a Merkle tree with four leaf nodes (A, B, C, D).
```mermaid
graph TD;
MR("Merkle Root")
HAB("Hash(A+B)")
HCD("Hash(C+D)")
HA("Hash(A)")
HB("Hash(B)")
HC("Hash(C)")
HD("Hash(D)")
HAB("Hash(LeafA+LeafB)")
HCD("Hash(LeafC+LeafD)")
HA("LeafA = Hash(A)")
HB("LeafB = Hash(B)")
HC("LeafC = Hash(C)")
HD("LeafD = Hash(D)")
MR --> HAB
MR --> HCD
Expand Down

0 comments on commit 3314062

Please sign in to comment.