Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
CCob committed Sep 19, 2018
2 parents 5dd9a68 + 1f64889 commit 811b7be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bittrex4j is published on the maven central repository and can be imported into
<dependency>
<groupId>com.github.ccob</groupId>
<artifactId>bittrex4j</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
</dependency>
```

Expand Down Expand Up @@ -145,8 +145,11 @@ public class ShowRealTimeFills {
});

bittrexExchange.connectToWebSocket(() -> {
bittrexExchange.queryExchangeState("BTC-ETH",exchangeState -> {
System.out.println(String.format("BTC-ETH order book has %d open buy orders and %d open sell orders (500 return limit)",exchangeState.getBuys().length, exchangeState.getSells().length));

});
bittrexExchange.subscribeToExchangeDeltas("BTC-ETH", null);
bittrexExchange.subscribeToExchangeDeltas("BTC-XVG", null);
bittrexExchange.subscribeToMarketSummaries(null);
});

Expand Down
2 changes: 1 addition & 1 deletion docs/latest-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bittrex4j is published on the maven central repository and can be imported into
<dependency>
<groupId>com.github.ccob</groupId>
<artifactId>bittrex4j</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.0.10-SNAPSHOT
version=1.0.11-SNAPSHOT

0 comments on commit 811b7be

Please sign in to comment.