Skip to content

Commit

Permalink
fix linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Jul 22, 2024
1 parent bae9189 commit ea303d7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .codespellignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate
crate
19 changes: 0 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ exclude = [".github/"]

[workspace]
members = [
"bin/keth",
"crates/node",
"crates/pool",
]
Expand Down
13 changes: 13 additions & 0 deletions bin/keth/src/cli/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
use clap::Parser;

#[derive(Debug, Parser)]
pub struct Cli {
#[command(flatten)]
log: LogArgs,
}

#[derive(Debug, Parser)]
pub struct LogArgs {
#[clap(short, long, default_value = "info")]
pub filter: String,
}
1 change: 1 addition & 0 deletions bin/keth/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod cli;

0 comments on commit ea303d7

Please sign in to comment.