super(exchangeSpecification);
}
public BTCTradeSecretData getSecretData() {
BTCTradeSecretResponse response = btcTrade.getSecret(exchangeSpecification.getSecretKey(), exchangeSpecification.getApiKey());
if (response.getResult()) {
return response.getData();
}
else {
throw new ExchangeException(response.getMessage());
}
}