Skip to content

Commit

Permalink
revert last changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alobarev committed Dec 17, 2015
1 parent 204222a commit 1d62464
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Expand Up @@ -32,6 +32,6 @@ public interface Bitbay {
public BitbayOrderBook getBitbayOrderBook(@PathParam("currencyPair") String currencyPair) throws IOException;

@GET
@Path("{currencyPair}/trades.json?sort=desc")
@Path("{currencyPair}/trades.json")
public BitbayTrade[] getBitbayTrades(@PathParam("currencyPair") String currencyPair) throws IOException;
}
Expand Up @@ -91,13 +91,4 @@ public BTCEExchangeInfo getBTCEInfo() throws IOException {
return btce.getInfo();
}

@Override
public List<CurrencyPair> getExchangeSymbols() throws IOException {
List<CurrencyPair> result = new ArrayList<>();
for (String p : getBTCEInfo().getPairs().keySet()) {
result.add(new CurrencyPair(p.toUpperCase().replace('_', '/')));
}
return result;
}

}

0 comments on commit 1d62464

Please sign in to comment.