We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26535ee commit 24679d8Copy full SHA for 24679d8
src/tasks/submit/flashbots.rs
@@ -289,6 +289,7 @@ async fn preflight_mev_bundle(
289
flashbots: &FlashbotsProvider,
290
signer: &LocalOrAws,
291
) {
292
+ debug!(target_block_number = ?mev_send_bundle.inclusion.block_number(), "Starting preflight check for MEV bundle via mev_sendBundle");
293
let mev_bundle_resp =
294
flashbots.send_mev_bundle(mev_send_bundle).with_auth(signer.clone()).into_future().await;
295
@@ -303,6 +304,8 @@ async fn preflight_mev_bundle(
303
304
debug!("MEV bundle submission via mev_sendBundle returned no bundle hash");
305
}
306
- Err(_) => todo!(),
307
+ Err(err) => {
308
+ error!(%err, "MEV bundle submission via mev_sendBundle failed - error returned")
309
+ },
310
311
0 commit comments