Skip to content

Commit d67d5cd

Browse files
authored
Merge pull request #99 from Blobscan/fix/increase-reqwest-request-timeout
fix: increase reqwest client request timeout
2 parents ceb5b7e + 0f4db2c commit d67d5cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ impl Context {
6666
let exp_backoff = Some(ExponentialBackoffBuilder::default().build());
6767

6868
let client = reqwest::Client::builder()
69-
.timeout(Duration::from_secs(8))
69+
.timeout(Duration::from_secs(16))
7070
.build()?;
7171
let provider = ProviderBuilder::new()
7272
.network::<Ethereum>()

0 commit comments

Comments
 (0)