We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b2f9ae commit f5660bcCopy full SHA for f5660bc
src/executors/priority_executor.rs
@@ -37,6 +37,7 @@ const QUOTE_ETH_LOG10_THRESHOLD: usize = 8;
37
// The number of bps to add to the base bid for each fallback bid
38
const DEFAULT_FALLBACK_BID_SCALE_FACTOR: u64 = 50;
39
const CONFIRMATION_TIMEOUT_SEC: u64 = 10;
40
+const RECEIPT_POLL_INTERVAL_MS: u64 = 250;
41
42
const UNICHAIN_ID: u64 = 130;
43
@@ -366,7 +367,7 @@ impl PriorityExecutor {
366
367
}
368
369
- tokio::time::sleep(std::time::Duration::from_millis(100)).await;
370
+ tokio::time::sleep(std::time::Duration::from_millis(RECEIPT_POLL_INTERVAL_MS)).await;
371
372
373
Ok(None)
0 commit comments