diff --git a/leo/commands/watch.rs b/leo/commands/watch.rs index 1bf0570078..b761f8aa47 100644 --- a/leo/commands/watch.rs +++ b/leo/commands/watch.rs @@ -57,8 +57,7 @@ impl CLI for WatchCommand { match rx.recv() { // See changes on the write event Ok(DebouncedEvent::Write(_write)) => { - let options = (); - match BuildCommand::output(options) { + match BuildCommand::output(()) { Ok(_output) => { tracing::info!("Built successfully"); }