Adding in a force-recheck option

This commit is contained in:
Kinesin Data Technologies Incorporated
2022-10-05 12:29:20 -03:00
parent 56771a5f47
commit 8f6e96e989
2 changed files with 17 additions and 6 deletions
+5
View File
@@ -75,6 +75,10 @@ struct Args {
/// Enable verbose logging
#[clap(short, long)]
verbose: bool,
/// Force a full re-check
#[clap(short, long)]
force_recheck: bool,
}
/*
@@ -122,6 +126,7 @@ async fn main() -> std::io::Result<()> {
exe_tx.clone(),
storage_tx.clone(),
world_def.output_options,
args.force_recheck,
)
.await
.unwrap();