super(BittrexAuthenticated.class, exchangeSpecification);
}
public List<BittrexBalance> getBittrexAccountInfo() throws IOException {
BittrexBalancesResponse response = bittrex.balances(apiKey, signatureCreator, String.valueOf(nextNonce()));
if (response.getSuccess()) {
return response.getResult();
}
else {
throw new ExchangeException(response.getMessage());
}
}