Skip to content

Commit 24679d8

Browse files
committed
debug: moar logs
1 parent 26535ee commit 24679d8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/tasks/submit/flashbots.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ async fn preflight_mev_bundle(
289289
flashbots: &FlashbotsProvider,
290290
signer: &LocalOrAws,
291291
) {
292+
debug!(target_block_number = ?mev_send_bundle.inclusion.block_number(), "Starting preflight check for MEV bundle via mev_sendBundle");
292293
let mev_bundle_resp =
293294
flashbots.send_mev_bundle(mev_send_bundle).with_auth(signer.clone()).into_future().await;
294295

@@ -303,6 +304,8 @@ async fn preflight_mev_bundle(
303304
debug!("MEV bundle submission via mev_sendBundle returned no bundle hash");
304305
}
305306
}
306-
Err(_) => todo!(),
307+
Err(err) => {
308+
error!(%err, "MEV bundle submission via mev_sendBundle failed - error returned")
309+
},
307310
}
308311
}

0 commit comments

Comments
 (0)