return handleErrors(deserialize(doHttp(url, "DELETE", null), responseClass));
}
private static Transaction serializeAmount(Transaction transaction) throws CoinbaseException {
if (transaction.getAmount() == null) {
throw new CoinbaseException("Amount is a required field");
}
// Massage amount
Money amount = transaction.getAmount();
transaction.setAmount(null);