Skip to content

Commit 80f4b08

Browse files
committed
feat: book updates
1 parent 10905d5 commit 80f4b08

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

book/getting-started/configuration.md

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ forge script script/OPSuccinctUpgrader.s.sol:OPSuccinctUpgrader \
1919
--ffi
2020
```
2121

22+
### Finality on Upgrade
23+
24+
When upgrading from an `op-proposer` proposing optimistic output roots with a non-zero `finalizationPeriod`, all proposed output roots will be automatically finalized after the upgrade (by default the `finalizationPeriod` is set to 0 in `op-succinct`). For security, we recommend ensuring that all old proposer output roots are correct before upgrading.
25+
2226
## RaaS Providers
2327

2428
More information for how to configure an OP Stack RaaS provider deployment will be available soon.

utils/host/src/stats.rs

+5
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ impl fmt::Display for ExecutionStats {
5858
)?;
5959
write_stat(f, "Batch Start", self.batch_start)?;
6060
write_stat(f, "Batch End", self.batch_end)?;
61+
write_stat(
62+
f,
63+
"Witness Generation Duration (seconds)",
64+
self.witness_generation_time_sec,
65+
)?;
6166
write_stat(
6267
f,
6368
"Execution Duration (seconds)",

0 commit comments

Comments
 (0)