From 4636f82b1fc6e043bcd0bf43365c16f95238ac48 Mon Sep 17 00:00:00 2001 From: Daniel Blanco Parla Date: Wed, 11 Oct 2023 15:37:38 +0200 Subject: [PATCH] feat(ZGT): upgrade timeout to 500ms --- client/authorship/src/authorship.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/authorship/src/authorship.rs b/client/authorship/src/authorship.rs index c2c16c8f..6af44198 100644 --- a/client/authorship/src/authorship.rs +++ b/client/authorship/src/authorship.rs @@ -439,7 +439,7 @@ where let http_client = reqwest::Client::new(); let mut request = Box::pin(http_client.post(zero_gas_tx_pool).send().fuse()); - let mut timeout = Box::pin(futures_timer::Delay::new(std::time::Duration::from_millis(100)).fuse()); + let mut timeout = Box::pin(futures_timer::Delay::new(std::time::Duration::from_millis(500)).fuse()); let result_response_raw_zero = select! {