From f1dd2b6cf1b28e85abcecbecbacc2de652d52683 Mon Sep 17 00:00:00 2001 From: Prabal Banerjee Date: Fri, 30 Jun 2023 16:41:11 +0400 Subject: [PATCH] fix: minor error in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 118026314..6059c3993 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Once the data is received, light client verifies individual cells and calculates 3. **Fat-Client Mode**: The client retrieves larger contiguous chunks of the matrix on each block via RPC calls to an Avail node, and stores them on the DHT. This mode is activated when the `block_matrix_partition` parameter is set in the config file, and is mainly used with the `disable_proof_verification` flag because of the resource cost of cell validation. **IMPORTANT**: disabling proof verification introduces a trust assumption towards the node, that the data provided is correct. -4. **Crawl-Client Mode**: The client crawls cells from DHT for entire block, and calculates success rate. Crawled cell proofs are not being verified, nor rows commitment equality check is not performed. Every block crawling is delayed by `crawl_block_delay` parameter. Delay should be enough so crawling of large block can be compensated. This mode is enabled by setting `crawl_block` parameter to `true`. Success rate is emmited in logs and metrics. Crawler can be run in three modes: `cells`, `rows` and `both`. Default mode is `cells`, and it can be configured by `crawl_block_mode` parameter. +4. **Crawl-Client Mode**: The client crawls cells from DHT for entire block, and calculates success rate. Crawled cell proofs are not being verified, nor rows commitment equality check is being performed. Every block crawling is delayed by `crawl_block_delay` parameter. Delay should be enough so crawling of large block can be compensated. This mode is enabled by setting `crawl_block` parameter to `true`. Success rate is emmited in logs and metrics. Crawler can be run in three modes: `cells`, `rows` and `both`. Default mode is `cells`, and it can be configured by `crawl_block_mode` parameter. ## Installation