We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd0d13 commit 76f45ebCopy full SHA for 76f45eb
mev-build-rs/src/auctioneer/service.rs
@@ -278,7 +278,12 @@ impl<
278
}
279
280
async fn submit_payload(&self, payload: EthBuiltPayload) {
281
- let auction = self.open_auctions.get(&payload.id()).expect("has auction");
+ // TODO: resolve hot fix for short slot timings
282
+ let auction = self.open_auctions.get(&payload.id());
283
+ if auction.is_none() {
284
+ return
285
+ }
286
+ let auction = auction.unwrap();
287
let mut successful_relays_for_submission = Vec::with_capacity(auction.relays.len());
288
match prepare_submission(
289
&payload,
0 commit comments