Skip to content

Commit

Permalink
Format and clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
gmart7t2 committed Aug 9, 2023
1 parent ee457ac commit 9ddb8c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ pub(crate) struct Options {
help = "Use <CHAIN>."
)]
pub(crate) chain_argument: Chain,
#[clap(long, default_value = "5000", help = "Commit changes to the index file on disk every <COMMIT> blocks.")]
#[clap(
long,
default_value = "5000",
help = "Commit changes to the index file on disk every <COMMIT> blocks."
)]
pub(crate) commit: usize,
#[clap(long, help = "Load configuration from <CONFIG>.")]
pub(crate) config: Option<PathBuf>,
Expand Down
1 change: 1 addition & 0 deletions tests/find.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ fn find_command_returns_satpoint_for_sat() {
address: None,
blockhash: None,
date: None,
height: None,
name: None,
timestamp: None,
value: None,
Expand Down

0 comments on commit 9ddb8c8

Please sign in to comment.