Skip to content

Commit

Permalink
Added ScheduledExecutorService.
Browse files Browse the repository at this point in the history
  • Loading branch information
conor10 committed May 16, 2017
1 parent ed862d0 commit 2b7cd5a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/java/org/web3j/quorum/JsonRpc2_0Quorum.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import java.math.BigInteger;
import java.util.Collections;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ScheduledExecutorService;

import org.web3j.protocol.Web3jService;
import org.web3j.protocol.core.JsonRpc2_0Web3j;
Expand All @@ -24,8 +24,9 @@ public JsonRpc2_0Quorum(Web3jService web3jService) {
}

public JsonRpc2_0Quorum(
Web3jService web3jService, long pollingInterval, ExecutorService executorService) {
super(web3jService, pollingInterval, executorService);
Web3jService web3jService, long pollingInterval,
ScheduledExecutorService scheduledExecutorService) {
super(web3jService, pollingInterval, scheduledExecutorService);
}

@Override
Expand Down

0 comments on commit 2b7cd5a

Please sign in to comment.