Skip to content

Commit 48a1e82

Browse files
committed
fmt
1 parent a199e2c commit 48a1e82

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

src/tasks/submit/task.rs

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,17 @@ impl SubmitTask {
236236
self.config.clone(),
237237
self.constants,
238238
);
239-
let bumpable =
240-
match prep.prep_transaction(&sim_result.env.prev_header).instrument(span.clone()).await {
241-
Ok(bumpable) => bumpable,
242-
Err(error) => {
243-
error!(%error, "failed to prepare transaction for submission");
244-
continue;
245-
}
246-
};
239+
let bumpable = match prep
240+
.prep_transaction(&sim_result.env.prev_header)
241+
.instrument(span.clone())
242+
.await
243+
{
244+
Ok(bumpable) => bumpable,
245+
Err(error) => {
246+
error!(%error, "failed to prepare transaction for submission");
247+
continue;
248+
}
249+
};
247250

248251
// Simulate the transaction to check for reverts
249252
if let Err(error) = self.sim_with_call(bumpable.req()).instrument(span.clone()).await {

0 commit comments

Comments
 (0)