Skip to content

Commit

Permalink
Update documentation and samples ready for 1.0.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CCob committed May 24, 2018
1 parent 3d4ea52 commit 1cce88c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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

0 comments on commit 1cce88c

Please sign in to comment.