}
public BitfinexCreditResponse[] getBitfinexActiveCredits() throws IOException {
try {
BitfinexCreditResponse[] credits = bitfinex.activeCredits(apiKey, payloadCreator, signatureCreator, new BitfinexActiveCreditsRequest(String.valueOf(nextNonce())));
return credits;
} catch (BitfinexException e) {
throw new ExchangeException(e.getMessage());
}
}