Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DSharifi committed Jan 17, 2025
1 parent 1bfdd0d commit 32fa2b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rs/consensus/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![deny(missing_docs)]
#![cfg_attr(not(test), deny(missing_docs))]
//! The consensus crate provides implementations of the consensus algorithm of
//! the internet computer block chain, a component responsible for executing
//! distributed key generation using said block chain to hold the state of the
Expand Down
2 changes: 1 addition & 1 deletion rs/starter/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ fn main() -> Result<()> {
.arg("--config-file")
.args([config_path.to_str().unwrap()]);
info!(log, "Executing {:?}", cmd);
cmd.exec();
let _ = cmd.exec();

Ok(())
}
Expand Down

0 comments on commit 32fa2b9

Please sign in to comment.