mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-08 00:02:46 -04:00
Corrects the paths at which the client looks for Bitcoin transactions and adds a small test suite to check these results. Fixes stripe/stripe-ruby#236.
10 lines
164 B
Ruby
10 lines
164 B
Ruby
module Stripe
|
|
class BitcoinTransaction < APIResource
|
|
include Stripe::APIOperations::List
|
|
|
|
def self.url
|
|
"/v1/bitcoin/transactions"
|
|
end
|
|
end
|
|
end
|