From 70e47f7eb016881255d01d1d658fed2b3b9df0aa Mon Sep 17 00:00:00 2001 From: Lou-Kamades Date: Thu, 20 Jun 2024 11:46:35 -0500 Subject: [PATCH] update merkle tree node contents --- core/merkle-tree.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/merkle-tree.md b/core/merkle-tree.md index 7c1c19a..f70cf2d 100644 --- a/core/merkle-tree.md +++ b/core/merkle-tree.md @@ -94,12 +94,12 @@ Contents of nodes: - `L2 := sha256(concat(0x00, data[2]))` - `L3 := sha256(concat(0x00, data[3]))` - `L4 := sha256(concat(0x00, data[4]))` -- `Iα := sha256(concat(0x01, hash(L0), hash(L1)))` -- `Iβ := sha256(concat(0x01, hash(L2), hash(L3)))` -- `Iγ := sha256(concat(0x01, hash(L4), hash(L4)))` -- `Iδ := sha256(concat(0x01, hash(Iα), hash(Iβ)))` -- `Iε := sha256(concat(0x01, hash(Iγ), hash(Iγ)))` -- `Iζ := sha256(concat(0x01, hash(Iδ), hash(Iε)))` +- `Iα := sha256(concat(0x01, L0, L1))` +- `Iβ := sha256(concat(0x01, L2, L3))` +- `Iγ := sha256(concat(0x01, L4, L4))` +- `Iδ := sha256(concat(0x01, Iα, Iβ))` +- `Iε := sha256(concat(0x01, Iγ, Iγ))` +- `Iζ := sha256(concat(0x01, Iδ, Iε))` ### List Equality Check