Skip to content

Commit

Permalink
Fix typo in sync/README.md (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear authored Aug 9, 2023
1 parent b360858 commit e7645fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ State sync code is structured as follows:
- `CodeRequestHandler`: handles requests for contract code
- `BlockRequestHandler`: handles requests for blocks
- _Note: There are response size and time limits in place so peers joining the network do not overload peers providing data. Additionally, the engine tracks the CPU usage of each peer for such messsages and throttles inbound requests accordingly._
- `sync/client`: Validates reponses from peers and provides support for syncing tries.
- `sync/client`: Validates responses from peers and provides support for syncing tries.
- `sync/statesync`: Uses `sync/client` to sync EVM related state: Accounts, storage tries, and contract code.
- `plugin/evm/atomicSyncer`: Uses `sync/client` to sync the atomic trie.
- `plugin/evm/`: The engine expects the VM to implement `StateSyncableVM` interface,
Expand Down Expand Up @@ -127,4 +127,4 @@ While state sync is faster than normal bootstrapping, the process may take sever
| `state-sync-skip-resume` | `bool` | set to true to avoid resuming an ongoing sync | `false` |
| `state-sync-min-blocks` | `uint64` | Minimum number of blocks the chain must be ahead of local state to prefer state sync over bootstrapping | `300,000` |
| `state-sync-server-trie-cache` | `int` | Size of trie cache to serve state sync data in MB. Should be set to multiples of `64`. | `64` |
| `state-sync-ids` | `string` | a comma seperated list of `NodeID-` prefixed node IDs to sync data from. If not provided, peers are randomly selected. | |
| `state-sync-ids` | `string` | a comma seperated list of `NodeID-` prefixed node IDs to sync data from. If not provided, peers are randomly selected. | |

0 comments on commit e7645fa

Please sign in to comment.