From 5761531039e88ba3446f4c2b2de65d96958627ff Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 14 May 2024 16:29:49 +0300 Subject: [PATCH] boost: increase get payload timeout to 4s --- mev-boost-rs/src/relay_mux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mev-boost-rs/src/relay_mux.rs b/mev-boost-rs/src/relay_mux.rs index a6494996..105bd3b4 100644 --- a/mev-boost-rs/src/relay_mux.rs +++ b/mev-boost-rs/src/relay_mux.rs @@ -27,7 +27,7 @@ const VALIDATOR_REGISTRATION_TIME_OUT_SECS: u64 = 4; // Give relays this amount of time in seconds to return bids. const FETCH_BEST_BID_TIME_OUT_SECS: u64 = 1; // Give relays this amount of time in seconds to respond with a payload. -const FETCH_PAYLOAD_TIME_OUT_SECS: u64 = 1; +const FETCH_PAYLOAD_TIME_OUT_SECS: u64 = 4; #[derive(Debug)] struct AuctionContext {