Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Jun 12, 2024
1 parent 0026e3a commit 47798de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hotshot-state-prover/src/bin/state-prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ async fn main() {

if args.daemon {
// Launching the prover service daemon
if let Err(err) = run_prover_service(config, SEQUENCER_VERSION).await{
if let Err(err) = run_prover_service(config, SEQUENCER_VERSION).await {
tracing::error!("Error running prover service: {:?}", err);
};
} else {
// Run light client state update once
if let Err(err) = run_prover_once(config, SEQUENCER_VERSION).await{
if let Err(err) = run_prover_once(config, SEQUENCER_VERSION).await {
tracing::error!("Error running prover once: {:?}", err);
};
}
Expand Down

0 comments on commit 47798de

Please sign in to comment.