Skip to content

Commit

Permalink
imports
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriymyronovych committed Apr 23, 2018
1 parent a1c8a3b commit 956f064
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import java.util.concurrent.TimeUnit;

import org.junit.Test;
import org.web3j.generated.HumanStandardToken;
import rx.Subscription;

import org.web3j.generated.HumanStandardToken;
import org.web3j.protocol.core.DefaultBlockParameterName;
import org.web3j.protocol.core.methods.response.TransactionReceipt;

Expand Down Expand Up @@ -47,7 +47,7 @@ public void testContract() throws Exception {
Subscription transferEventSubscription = contract.transferEventObservable(
DefaultBlockParameterName.EARLIEST,
DefaultBlockParameterName.LATEST).subscribe(
transferEventResponse -> transferEventCountDownLatch.countDown()
transferEventResponse -> transferEventCountDownLatch.countDown()
);

CountDownLatch approvalEventCountDownLatch = new CountDownLatch(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.math.BigInteger;

import org.junit.Test;

import org.web3j.generated.SimpleStorage;

import static org.hamcrest.CoreMatchers.is;
Expand Down

0 comments on commit 956f064

Please sign in to comment.