}
}
public boolean cancelBittrexLimitOrder(String uuid) throws IOException {
BittrexCancelOrderResponse response = bittrex.cancel(apiKey, signatureCreator, String.valueOf(nextNonce()), uuid);
if (response.getSuccess()) {
return true;
}
else {
throw new ExchangeException(response.getMessage());
}
}