Commit 971eb82e authored by CrazyFrog's avatar CrazyFrog Committed by GitHub

Fix typos (#13404)

* Update README.md

* Update justfile

* Update readme.md
parent 848b4a8d
......@@ -82,7 +82,7 @@ block builder to instead impose a (tighter) block level limit of OP_BATCHER_THRO
transaction limit of OP_BATCHER_THROTTLE_TRANSACTION_SIZE.
### Max Channel Duration
The batcher tries to ensure that batches are posted at a minimum frequency specified by `MAX_CHANNEL_DURATION`. To achiveve this, it caches the l1 origin of the last submitted channel, and will force close a channel if the timestamp of the l1 head moves beyond the timestamp of that l1 origin plus `MAX_CHANNEL_DURATION`. When clearing its state, e.g. following the detection of a reorg, the batcher will not clear the cached l1 origin: this way, the regular posting of batches will not be disturbed by events like reorgs.
The batcher tries to ensure that batches are posted at a minimum frequency specified by `MAX_CHANNEL_DURATION`. To achieve this, it caches the l1 origin of the last submitted channel, and will force close a channel if the timestamp of the l1 head moves beyond the timestamp of that l1 origin plus `MAX_CHANNEL_DURATION`. When clearing its state, e.g. following the detection of a reorg, the batcher will not clear the cached l1 origin: this way, the regular posting of batches will not be disturbed by events like reorgs.
## Known issues and future work
......
......@@ -54,7 +54,7 @@ make op-node
--rpc.port=7000 \
--syncmode=execution-layer
# If running inside docker, ake sure to mount the below persistent data as (host) volume,
# If running inside docker, make sure to mount the below persistent data as (host) volume,
# it may be lost on restart otherwise:
# - P2P private key: auto-generated when missing, used to maintain a stable peer identity.
# - Peerstore DB: remember peer records to connect with, used to not wait for peer discovery.
......
......@@ -159,7 +159,7 @@ interfaces-check-no-build:
# Checks that all interfaces are appropriately named and accurately reflect the corresponding
# contract that they're meant to represent. We run "clean" before building because leftover
# artifacts can cause the script to detect issues incorrectly.2
# artifacts can cause the script to detect issues incorrectly.
interfaces-check: clean build interfaces-check-no-build
# Checks that the size of the contracts is within the limit.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment