diff --git a/content/notes/merkle tree.md b/content/notes/merkle tree.md index f405ca722..3ee0b82d0 100644 --- a/content/notes/merkle tree.md +++ b/content/notes/merkle tree.md @@ -12,4 +12,6 @@ Merkle trees exist to prove consistency of data. They are essentially a tree of ![digram|300](https://i.imgur.com/HMzwjgb.png) -They provide a means to prove the integrity and validity of data. E.g., if you change the value of a data block, the entire path leading to the root hash would also be changed. So, if we hold the value of the root hash, we could v +They provide a means to prove the integrity and validity of data. E.g., if you change the value of a data block, the entire path leading to the root hash would also be changed. So, if we hold the value of the root hash, we could verify the consistency of data by rebuilding the trie to get the root hash and compare it to the value we are holding. + +