From 0affe6b8cb8676a2d6fc8c0b5f71818ab0aeb676 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Wed, 5 Jul 2023 08:46:41 -0600 Subject: [PATCH] Update design/metadata-overhead.md Co-authored-by: markspanbroek --- design/metadata-overhead.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/metadata-overhead.md b/design/metadata-overhead.md index 49ec08d..0bdba62 100644 --- a/design/metadata-overhead.md +++ b/design/metadata-overhead.md @@ -68,7 +68,7 @@ Also, datasets are now announced by their Merkle root instead of each individual ### Block Stores and Local Repo -All interaction with blocks/chunks sit behind the `BlockStore` abstraction, which currently only supports querying blocks by hash. It should be extended to allow querying by Merkle root and block index and/or range. +All interactions with blocks/chunks sit behind the `BlockStore` abstraction, which currently only supports querying blocks by hash. It should be extended to allow querying by Merkle root and block index and/or range. The local repo should be aware of the persisted Merkle tree. When a requests by index is made, the store first locates the persisted Merkle tree corresponding to the specified root and retrieves the requested leaf and corresponding Merkle proofs.