chore: correct the comments (#14339)

This commit is contained in:
Fallengirl
2025-02-10 19:32:36 +01:00
committed by GitHub
parent fe322379ff
commit 731b771fa2
7 changed files with 8 additions and 8 deletions

View File

@ -15,7 +15,7 @@
//! - `min-error-logs`: Disables all logs below `error` level.
//! - `min-warn-logs`: Disables all logs below `warn` level.
//! - `min-info-logs`: Disables all logs below `info` level. This can speed up the node, since fewer
//! calls to the logging component is made.
//! calls to the logging component are made.
//! - `min-debug-logs`: Disables all logs below `debug` level.
//! - `min-trace-logs`: Disables all logs below `trace` level.
#![doc(

View File

@ -61,7 +61,7 @@ impl<C: ChainSpecParser<ChainSpec = OpChainSpec>> InitStateCommandOp<C> {
)?;
// SAFETY: it's safe to commit static files, since in the event of a crash, they
// will be unwinded according to database checkpoints.
// will be unwound according to database checkpoints.
//
// Necessary to commit, so the BEDROCK_HEADER is accessible to provider_rw and
// init_state_dump

View File

@ -447,7 +447,7 @@ mod tests {
#[test]
fn op_deposit_fields_post_canyon() {
// ensure_create2_deployer will fail if timestamp is set to less then 2
// ensure_create2_deployer will fail if timestamp is set to less than 2
let header = Header {
timestamp: 2,
number: 1,

View File

@ -47,7 +47,7 @@ async fn can_sync() -> eyre::Result<()> {
.await?;
second_node.engine_api.canonical_stream.next().await.unwrap();
// Trigger backfil sync until block 80
// Trigger backfill sync until block 80
third_node
.engine_api
.update_forkchoice(canonical_chain[tip_index - 10], canonical_chain[tip_index - 10])