diff --git a/zebra-utils/src/bin/zebra-checkpoints/args.rs b/zebra-utils/src/bin/zebra-checkpoints/args.rs index 283b5f557..7af67a8c7 100644 --- a/zebra-utils/src/bin/zebra-checkpoints/args.rs +++ b/zebra-utils/src/bin/zebra-checkpoints/args.rs @@ -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)] diff --git a/zebra-utils/src/bin/zebra-checkpoints/main.rs b/zebra-utils/src/bin/zebra-checkpoints/main.rs index 08d14c8ad..f15043e44 100644 --- a/zebra-utils/src/bin/zebra-checkpoints/main.rs +++ b/zebra-utils/src/bin/zebra-checkpoints/main.rs @@ -62,8 +62,8 @@ fn cmd_output(cmd: &mut std::process::Command) -> Result { #[allow(clippy::print_stdout)] fn main() -> Result<()> { + // initialise init_tracing(); - color_eyre::install()?; // get the current block count