Skip to content

Commit

Permalink
Merge pull request #131 from holaplex/abdul/change-min-delay
Browse files Browse the repository at this point in the history
Change min delay time to 30ms for GET transaction details request
  • Loading branch information
imabdulbasit authored Sep 25, 2023
2 parents 51c41e3 + 6e67af9 commit e240946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fireblocks/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ impl Client {
.retry(
&ExponentialBuilder::default()
.with_jitter()
.with_min_delay(Duration::from_millis(250))
.with_min_delay(Duration::from_millis(30))
.with_max_times(10),
)
.await?;
Expand Down

0 comments on commit e240946

Please sign in to comment.