Skip to content

Commit

Permalink
docs: update merkle tree docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hadelive committed Feb 21, 2024
1 parent b52c199 commit b322827
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 b322827

Please sign in to comment.