Skip to content

Commit

Permalink
feat(ZGT): upgrade timeout to 500ms (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
deblanco authored Oct 11, 2023
1 parent a80fd8b commit 82f052a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/authorship/src/authorship.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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! {
Expand Down

0 comments on commit 82f052a

Please sign in to comment.