mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: correct the comments (#14339)
This commit is contained in:
@ -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(
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -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])
|
||||
|
||||
Reference in New Issue
Block a user