Skip to content

Commit

Permalink
Add a missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
Dentosal committed Jan 3, 2025
1 parent 2cd10c1 commit 75964bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/services/shared-sequencer/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ where
let blobs_bytes = postcard::to_allocvec(&blobs).expect("Failed to serialize SSBlob");

if let Err(err) = ss.send(self.signer.as_ref(), account, next_order, blobs_bytes).await {
TaskNextAction::ErrorContinue(err);
return TaskNextAction::ErrorContinue(err);
}

tracing::info!("Posted block to shared sequencer {blobs:?}");
Expand Down

0 comments on commit 75964bb

Please sign in to comment.