mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fmt: add a space between inner doc-comments and following items (#5880)
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
//! clap [Args](clap::Args) for Dev testnet configuration
|
||||
|
||||
use std::time::Duration;
|
||||
|
||||
use clap::Args;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! CLI definition and entrypoint to executable
|
||||
|
||||
use crate::{
|
||||
args::utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},
|
||||
chain,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! CLI command to show configs
|
||||
//! CLI command to show configs.
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
||||
use clap::Parser;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Database debugging tool
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Command for debugging block building.
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Command for debugging execution.
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Command for debugging in-memory merkle trie calculation.
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Command for debugging merkle trie calculation.
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! `reth debug` command. Collection of various debugging routines.
|
||||
|
||||
use clap::{Parser, Subcommand};
|
||||
|
||||
use crate::runner::CliContext;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! reth data directories.
|
||||
|
||||
use crate::utils::parse_path;
|
||||
use reth_primitives::Chain;
|
||||
use std::{
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Reth genesis initialization utility functions.
|
||||
|
||||
use reth_db::{
|
||||
cursor::DbCursorRO,
|
||||
database::Database,
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
//! Main node command
|
||||
//!
|
||||
//! Starts the client
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! P2P Debugging tool
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Prometheus exporter
|
||||
|
||||
use eyre::WrapErr;
|
||||
use hyper::{
|
||||
service::{make_service_fn, service_fn},
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! `reth recover` command.
|
||||
|
||||
use clap::{Parser, Subcommand};
|
||||
|
||||
use crate::runner::CliContext;
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Database debugging tool
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
utils::{chain_help, genesis_value_parser, SUPPORTED_CHAINS},
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Database debugging tool
|
||||
|
||||
use crate::{
|
||||
dirs::{DataDirPath, MaybePlatformPath},
|
||||
utils::DbTool,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! `reth stage` command
|
||||
|
||||
use clap::{Parser, Subcommand};
|
||||
|
||||
pub mod drop;
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
//! Main `stage` command
|
||||
//!
|
||||
//! Stage debugging tool
|
||||
|
||||
use crate::{
|
||||
args::{
|
||||
get_secret_key,
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
//! Command for generating test vectors.
|
||||
|
||||
use clap::{Parser, Subcommand};
|
||||
|
||||
mod tables;
|
||||
|
||||
Reference in New Issue
Block a user