Commit dbb8721b authored by Maurelian's avatar Maurelian Committed by GitHub

specs: Fix long line (#4006)

parent 69fe6f4d
...@@ -37,7 +37,10 @@ program ...@@ -37,7 +37,10 @@ program
} }
} }
fs.writeFileSync('./data/evm-addresses.json', JSON.stringify(addrs, null, 2)) fs.writeFileSync(
'./data/evm-addresses.json',
JSON.stringify(addrs, null, 2)
)
fs.writeFileSync('./data/evm-messages.json', JSON.stringify(msgs, null, 2)) fs.writeFileSync('./data/evm-messages.json', JSON.stringify(msgs, null, 2))
}) })
......
...@@ -136,8 +136,8 @@ Optimism's block derivation function is designed such that it: ...@@ -136,8 +136,8 @@ Optimism's block derivation function is designed such that it:
The rollup chain is subdivided into epochs. There is a 1:1 correspondence between L1 block numbers and epoch numbers. The rollup chain is subdivided into epochs. There is a 1:1 correspondence between L1 block numbers and epoch numbers.
For L1 block number `n`, there is a corresponding rollup epoch `n` which can only be derived after a _sequencing window_ worth of block has For L1 block number `n`, there is a corresponding rollup epoch `n` which can only be derived after a _sequencing window_
passed, i.e. after L1 block number `n + SEQUENCING_WINDOW_SIZE` is added to the L1 chain. worth of blocks haspassed, i.e. after L1 block number `n + SEQUENCING_WINDOW_SIZE` is added to the L1 chain.
Each epoch contains at least one block. Every block in the epoch contains an L1 info transaction which contains Each epoch contains at least one block. Every block in the epoch contains an L1 info transaction which contains
contextual information about L1 such as the block hash and timestamp. The first block in the epoch also contains all contextual information about L1 such as the block hash and timestamp. The first block in the epoch also contains all
......
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