Skip to content

Commit

Permalink
Cleanup zebra-checkpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Jan 16, 2023
1 parent 3311f07 commit 3c6bf93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions zebra-utils/src/bin/zebra-checkpoints/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@
//!
//! For usage please refer to the program help: `zebra-checkpoints --help`
#![deny(missing_docs)]
#![allow(clippy::try_err)]

use structopt::StructOpt;

/// zebra-checkpoints arguments
#[derive(Debug, StructOpt)]
#[derive(Clone, Debug, Eq, PartialEq, StructOpt)]
pub struct Args {
/// Path to zcash-cli command
#[structopt(default_value = "zcash-cli", short, long)]
Expand Down
2 changes: 1 addition & 1 deletion zebra-utils/src/bin/zebra-checkpoints/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ fn cmd_output(cmd: &mut std::process::Command) -> Result<String> {

#[allow(clippy::print_stdout)]
fn main() -> Result<()> {
// initialise
init_tracing();

color_eyre::install()?;

// get the current block count
Expand Down

0 comments on commit 3c6bf93

Please sign in to comment.