Remove the conflicting definition of transactions for transfers.

This commit is contained in:
Ross Boucher 2012-10-29 22:13:07 -07:00
parent 7f87b2bc4a
commit c0999ac5bb

View File

@ -1,16 +1,5 @@
module Stripe
class Transfer < APIResource
include Stripe::APIOperations::List
def transactions(params={})
response, api_key = Stripe.request(:get, transactions_url, @api_key, params)
Util.convert_to_stripe_object(response, api_key)
end
private
def transactions_url
url + '/transactions'
end
end
end