Skip to content

Commit bf30d9a

Browse files
committed
[2.0.0-SNAPSHOT]
1005L->1015L
1 parent 14ccb53 commit bf30d9a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: src/main/java/io/goodforgod/api/etherscan/manager/RequestQueueManager.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,27 @@ public interface RequestQueueManager extends AutoCloseable {
1717
* Is used by default when no API KEY is provided
1818
*/
1919
static RequestQueueManager anonymous() {
20-
return new SemaphoreRequestQueueManager(1, Duration.ofMillis(5005L));
20+
return new SemaphoreRequestQueueManager(1, Duration.ofMillis(5015L));
2121
}
2222

2323
/**
2424
* Is available for all registered free API KEYs
2525
* <a href="https://docs.etherscan.io/getting-started/viewing-api-usage-statistics">Free API KEY</a>
2626
*/
2727
static RequestQueueManager planFree() {
28-
return new SemaphoreRequestQueueManager(5, Duration.ofMillis(1005L));
28+
return new SemaphoreRequestQueueManager(5, Duration.ofMillis(1015L));
2929
}
3030

3131
static RequestQueueManager planStandard() {
32-
return new SemaphoreRequestQueueManager(10, Duration.ofMillis(1005L));
32+
return new SemaphoreRequestQueueManager(10, Duration.ofMillis(1015L));
3333
}
3434

3535
static RequestQueueManager planAdvanced() {
36-
return new SemaphoreRequestQueueManager(20, Duration.ofMillis(1005L));
36+
return new SemaphoreRequestQueueManager(20, Duration.ofMillis(1015L));
3737
}
3838

3939
static RequestQueueManager planProfessional() {
40-
return new SemaphoreRequestQueueManager(30, Duration.ofMillis(1005L));
40+
return new SemaphoreRequestQueueManager(30, Duration.ofMillis(1015L));
4141
}
4242

4343
static RequestQueueManager unlimited() {

0 commit comments

Comments
 (0)