super(exchangeSpecification);
}
public BitVcAccountInfo getBitVcAccountInfo() throws IOException {
BitVcAccountInfo rawAccountInfo = bitvc.getAccountInfo(accessKey, nextCreated(), digest);
if (rawAccountInfo.getMessage() != null) {
throw new ExchangeException(rawAccountInfo.getMessage());
}
else {
return rawAccountInfo;
}
}