Skip to content

Commit e296417

Browse files
authored
Fixed grammatical errors for improved readability (#511)
Corrected grammar: "transactions events" → "transaction events" for proper noun-adjective agreement. Preposition correction: "on" → "at" for referring to a website link properly. Corrected article usage: "any" → "a" for clarity.
1 parent 586a2b2 commit e296417

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/op-rbuilder/src/args.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub struct OpRbuilderArgs {
4949
help = "Safety level to pass to supervisor, values: finalized, safe, local-safe, cross-unsafe, unsafe, invalid"
5050
)]
5151
pub supervisor_safety_level: Option<String>,
52-
/// Signals whether to log pool transactions events
52+
/// Signals whether to log pool transaction events
5353
#[arg(long = "builder.log-pool-transactions", default_value = "false")]
5454
pub log_pool_transactions: bool,
5555
}

docs/REORG_LOSSES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Reorg losses
22

33

4-
From time to time, the Ethereum network forks for a short time (you can check that on https://etherscan.io/blocks_forked), causing block reorganizations (reorgs). When a reorg happens, all the transactions from the losing fork go to the mempool. This includes any private transactions, particularly any builder-generated transactions, such as the ones we add at the end of the block to pay the validator.
4+
From time to time, the Ethereum network forks for a short time (you can check that at https://etherscan.io/blocks_forked), causing block reorganizations (reorgs). When a reorg happens, all the transactions from the losing fork go to the mempool. This includes any private transactions, particularly any builder-generated transactions, such as the ones we add at the end of the block to pay the validator.
55

66

7-
If this happens, the builder ends up paying the bid to a random validator without winning any block! Notice that **this happens even if this transaction gives no tip to the block**, probably because, for some builders, when all paying transactions are included in the block they are building (and some gas is left), they include free transactions.
7+
If this happens, the builder ends up paying the bid to a random validator without winning a block! Notice that **this happens even if this transaction gives no tip to the block**, probably because, for some builders, when all paying transactions are included in the block they are building (and some gas is left), they include free transactions.
88

99

1010
This is a rare event but occurs from time to time and **causes losses to the builder**. As soon as the builder wins a real (non-reorged) block, the nonce changes, the old reorged transaction gets invalidated, and we are safe again.

0 commit comments

Comments
 (0)