return sell(amount, null);
}
public Transfer sell(Money amount, String paymentMethodId) throws CoinbaseException, IOException {
if (!amount.getCurrencyUnit().getCode().equals("BTC")) {
throw new CoinbaseException(
"Cannot sell " + amount.getCurrencyUnit().getCode()
+ " Only BTC amounts are supported for sells"
);
}