vault backup: 2022-12-19 11:24:11

This commit is contained in:
Jet Hughes 2022-12-19 11:24:11 +13:00
parent 9d30327cbb
commit faff49ad04

View File

@ -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.