Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mb1896 committed Mar 25, 2024
1 parent 1d909d7 commit 045d392
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ipc/provider/src/checkpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ impl<T: BottomUpCheckpointRelayer + Send + Sync + 'static> BottomUpCheckpointMan
.await
.unwrap();
all_submit_tasks.push(tokio::task::spawn(async move {
match Self::submit_checkpoint(parent_handler_clone, submitter, bundle, event).await {
match Self::submit_checkpoint(parent_handler_clone, submitter, bundle, event)
.await
{
Ok(()) => {
log::debug!("Successfully submitted checkpoint");
}
Expand Down

0 comments on commit 045d392

Please sign in to comment.