fmt: add a space between inner doc-comments and following items (#5880)

This commit is contained in:
DaniPopes
2023-12-28 16:52:20 +01:00
committed by GitHub
parent 8615863620
commit e341f47a16
77 changed files with 78 additions and 1 deletions

View File

@ -1,4 +1,5 @@
//! clap [Args](clap::Args) for Dev testnet configuration
use std::time::Duration;
use clap::Args;

View File

@ -1,4 +1,5 @@
//! CLI definition and entrypoint to executable
use crate::{
args::utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},
chain,

View File

@ -1,4 +1,5 @@
//! CLI command to show configs
//! CLI command to show configs.
use std::path::PathBuf;
use clap::Parser;

View File

@ -1,4 +1,5 @@
//! Database debugging tool
use crate::{
args::{
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},

View File

@ -1,4 +1,5 @@
//! Command for debugging block building.
use crate::{
args::{
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},

View File

@ -1,4 +1,5 @@
//! Command for debugging execution.
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! Command for debugging in-memory merkle trie calculation.
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! Command for debugging merkle trie calculation.
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! `reth debug` command. Collection of various debugging routines.
use clap::{Parser, Subcommand};
use crate::runner::CliContext;

View File

@ -1,4 +1,5 @@
//! reth data directories.
use crate::utils::parse_path;
use reth_primitives::Chain;
use std::{

View File

@ -1,4 +1,5 @@
//! Reth genesis initialization utility functions.
use reth_db::{
cursor::DbCursorRO,
database::Database,

View File

@ -1,6 +1,7 @@
//! Main node command
//!
//! Starts the client
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! P2P Debugging tool
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! Prometheus exporter
use eyre::WrapErr;
use hyper::{
service::{make_service_fn, service_fn},

View File

@ -1,4 +1,5 @@
//! `reth recover` command.
use clap::{Parser, Subcommand};
use crate::runner::CliContext;

View File

@ -1,4 +1,5 @@
//! Database debugging tool
use crate::{
args::{
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},

View File

@ -1,4 +1,5 @@
//! Database debugging tool
use crate::{
dirs::{DataDirPath, MaybePlatformPath},
utils::DbTool,

View File

@ -1,4 +1,5 @@
//! `reth stage` command
use clap::{Parser, Subcommand};
pub mod drop;

View File

@ -1,6 +1,7 @@
//! Main `stage` command
//!
//! Stage debugging tool
use crate::{
args::{
get_secret_key,

View File

@ -1,4 +1,5 @@
//! Command for generating test vectors.
use clap::{Parser, Subcommand};
mod tables;